Merge pull request #1020 from neheb/master

Restore strerror as %m is unsupported by the BSDs
This commit is contained in:
Jens Steube
2017-02-06 19:37:05 +01:00
committed by GitHub
26 changed files with 108 additions and 117 deletions
+4 -10
View File
@@ -14,24 +14,18 @@ void event_call (const u32 id, hashcat_ctx_t *hashcat_ctx, const void *buf, cons
#define EVENT(id) event_call ((id), hashcat_ctx, NULL, 0)
#define EVENT_DATA(id,buf,len) event_call ((id), hashcat_ctx, (buf), (len))
#if defined (__MINGW32__)
#define EVENT_PRINTF __attribute__ ((format (gnu_printf, 2, 3)))
#else
#define EVENT_PRINTF __attribute__ ((format (printf, 2, 3)))
#endif
__attribute__ ((format (printf, 2, 3)))
size_t event_log_info_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
EVENT_PRINTF
__attribute__ ((format (printf, 2, 3)))
size_t event_log_warning_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
EVENT_PRINTF
__attribute__ ((format (printf, 2, 3)))
size_t event_log_error_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
__attribute__ ((format (printf, 2, 3)))
size_t event_log_info (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
EVENT_PRINTF
__attribute__ ((format (printf, 2, 3)))
size_t event_log_warning (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
EVENT_PRINTF
__attribute__ ((format (printf, 2, 3)))
size_t event_log_error (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...);
int event_ctx_init (hashcat_ctx_t *hashcat_ctx);