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:
parent
9e0edcb4cc
commit
273b48de87
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user