1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-25 01:18:15 +00:00

Removed incorrect semicolon and blank line

This commit is contained in:
Flaggx1 2024-07-25 07:29:26 -04:00
parent d299b2833e
commit 4e0fc2099e
2 changed files with 1 additions and 2 deletions

View File

@ -374,7 +374,6 @@ u32 brain_compute_attack (hashcat_ctx_t *hashcat_ctx)
XXH64_update (state, custom_charset_8, strlen (custom_charset_8)); XXH64_update (state, custom_charset_8, strlen (custom_charset_8));
} }
} }
else if (user_options->attack_mode == ATTACK_MODE_HYBRID1) else if (user_options->attack_mode == ATTACK_MODE_HYBRID1)
{ {
const u64 wordlist_hash = brain_compute_attack_wordlist (straight_ctx->dict); const u64 wordlist_hash = brain_compute_attack_wordlist (straight_ctx->dict);

View File

@ -787,7 +787,7 @@ char *status_get_guess_charset (const hashcat_ctx_t *hashcat_ctx)
const char *custom_charset_7 = user_options->custom_charset_7; const char *custom_charset_7 = user_options->custom_charset_7;
const char *custom_charset_8 = user_options->custom_charset_8; const char *custom_charset_8 = user_options->custom_charset_8;
if ((custom_charset_1 != NULL) || (custom_charset_2 != NULL) || (custom_charset_3 != NULL) || (custom_charset_4 != NULL) || (custom_charset_5 != NULL) || (custom_charset_6 != NULL) || (custom_charset_7 != NULL) || (custom_charset_8 != NULL)); if ((custom_charset_1 != NULL) || (custom_charset_2 != NULL) || (custom_charset_3 != NULL) || (custom_charset_4 != NULL) || (custom_charset_5 != NULL) || (custom_charset_6 != NULL) || (custom_charset_7 != NULL) || (custom_charset_8 != NULL))
{ {
char *tmp_buf; char *tmp_buf;