mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-26 00:18:36 +00:00
Fix %m with MinGW
This commit is contained in:
parent
f27675a0ec
commit
66d4eea649
@ -56,7 +56,11 @@ void event_call (const u32 id, hashcat_ctx_t *hashcat_ctx, const void *buf, cons
|
|||||||
__attribute__ ((format (printf, 1, 0)))
|
__attribute__ ((format (printf, 1, 0)))
|
||||||
static int event_log (const char *fmt, va_list ap, char *s, const size_t sz)
|
static int event_log (const char *fmt, va_list ap, char *s, const size_t sz)
|
||||||
{
|
{
|
||||||
|
#if defined (__MINGW32__)
|
||||||
|
return __mingw_vsnprintf (s, sz, fmt, ap);
|
||||||
|
#else
|
||||||
return vsnprintf (s, sz, fmt, ap);
|
return vsnprintf (s, sz, fmt, ap);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t event_log_info_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...)
|
size_t event_log_info_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...)
|
||||||
|
Loading…
Reference in New Issue
Block a user