From 8fc1306b0b16950a97e5e9bde56577db180337ab Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Thu, 30 Jun 2016 08:43:10 +0200 Subject: [PATCH] Fix https://github.com/hashcat/hashcat/issues/395 --- src/hashcat.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/hashcat.c b/src/hashcat.c index 41b6144..f3a97a9 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -18295,10 +18295,17 @@ int main (int argc, char **argv) log_info (""); - if (stdout_flag == 0) status_display (); + status_display (); log_info (""); } + else + { + if (status == 1) + { + status_display (); + } + } } if (induction_dictionaries_cnt) -- 2.25.1