From 27503957aae09377d99cad78844edf98fc65dce5 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Wed, 9 Jun 2021 13:25:25 +0200 Subject: [PATCH] Fix message on startup-mode in --backend-info mode --- src/terminal.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/terminal.c b/src/terminal.c index da80ebcf9..6809ca8cd 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -68,7 +68,12 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag) event_log_info (hashcat_ctx, "%s (%s) starting in progress-only mode...", PROGNAME, version_tag); event_log_info (hashcat_ctx, NULL); } - else if (user_options->hash_mode == 0 && user_options->hash_mode_chgd == false) + else if (user_options->backend_info == true) + { + event_log_info (hashcat_ctx, "%s (%s) starting in backend information mode...", PROGNAME, version_tag); + event_log_info (hashcat_ctx, NULL); + } + else if (user_options->hash_mode_chgd == false) { event_log_info (hashcat_ctx, "%s (%s) starting in autodetect mode...", PROGNAME, version_tag); event_log_info (hashcat_ctx, NULL);