1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

Fixed some missing break; in event.c to detect logging events

This commit is contained in:
jsteube 2016-11-12 15:39:15 +01:00
parent 9e0edcb4cc
commit 273b48de87

View File

@ -16,9 +16,9 @@ void event_call (const u32 id, hashcat_ctx_t *hashcat_ctx, const void *buf, cons
switch (id)
{
case EVENT_LOG_INFO: is_log = true;
case EVENT_LOG_WARNING: is_log = true;
case EVENT_LOG_ERROR: is_log = true;
case EVENT_LOG_INFO: is_log = true; break;
case EVENT_LOG_WARNING: is_log = true; break;
case EVENT_LOG_ERROR: is_log = true; break;
}
if (is_log == false)