1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-18 06:08:16 +00:00

the actual changes for #461 :)

This commit is contained in:
philsmd 2016-08-18 12:17:51 +02:00
parent 0413806a04
commit 58ae741cbd
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

View File

@ -7898,7 +7898,10 @@ int main (int argc, char **argv)
if (wordlist_mode == WL_MODE_STDIN) if (wordlist_mode == WL_MODE_STDIN)
{ {
status = 1; // enable status (in stdin mode) whenever we do not use --stdout together with an outfile
if (stdout_flag == 0) status = 1;
else if (outfile != NULL) status = 1;
data.status = status; data.status = status;
} }