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

Fix message on startup-mode in --backend-info mode

This commit is contained in:
Jens Steube 2021-06-09 13:25:25 +02:00
parent 0602562574
commit 27503957aa

View File

@ -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, "%s (%s) starting in progress-only mode...", PROGNAME, version_tag);
event_log_info (hashcat_ctx, NULL); 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, "%s (%s) starting in autodetect mode...", PROGNAME, version_tag);
event_log_info (hashcat_ctx, NULL); event_log_info (hashcat_ctx, NULL);