1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-21 23:58:07 +00:00

Merge pull request #3891 from PenguinKeeper7/outfile-json-check-fix

Fix --outfile-json check
This commit is contained in:
Jens Steube 2023-10-08 20:40:22 +02:00 committed by GitHub
commit 264e8ba95f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1082,7 +1082,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
return -1;
}
if (user_options->outfile_json == false)
if (user_options->outfile_json == true)
{
event_log_error (hashcat_ctx, "Mixing --outfile-json is not allowed with --show.");