1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 07:08:19 +00:00

Merge pull request #2768 from Chick3nman/master

Fix typo in potfile remove message
This commit is contained in:
Jens Steube 2021-04-25 08:16:18 +02:00 committed by GitHub
commit 07ed10a77e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -411,12 +411,12 @@ static void main_potfile_num_cracked (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, M
{ {
if (potfile_remove_cracks == 1) if (potfile_remove_cracks == 1)
{ {
event_log_info (hashcat_ctx, "INFO: Removed 1 hash found as as potfile entry or as empty hash."); event_log_info (hashcat_ctx, "INFO: Removed 1 hash found as potfile entry or as empty hash.");
event_log_info (hashcat_ctx, NULL); event_log_info (hashcat_ctx, NULL);
} }
else else
{ {
event_log_info (hashcat_ctx, "INFO: Removed %d hashes found as potfile entries or as empty hash.", potfile_remove_cracks); event_log_info (hashcat_ctx, "INFO: Removed %d hashes found as potfile entries or as empty hashes.", potfile_remove_cracks);
event_log_info (hashcat_ctx, NULL); event_log_info (hashcat_ctx, NULL);
} }
} }