From 434af9fe6a8ef6929897ec541c24d0093d15dc62 Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Thu, 20 Jul 2017 05:58:42 -0800 Subject: [PATCH] visual indicator of options active when benchmarking --- src/terminal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/terminal.c b/src/terminal.c index 512b51014..08f147b9a 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -38,6 +38,7 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag) if (user_options->machine_readable == false) { event_log_info (hashcat_ctx, "%s (%s) starting in benchmark mode...", PROGNAME, version_tag); + event_log_info (hashcat_ctx, "Active options: -O %d, -w %u", user_options->optimized_kernel_enable, user_options->workload_profile); event_log_info (hashcat_ctx, NULL); if (user_options->workload_profile_chgd == false) @@ -52,6 +53,8 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag) else { event_log_info (hashcat_ctx, "# %s (%s)", PROGNAME, version_tag); + event_log_info (hashcat_ctx, "# Active options: -O %d, -w %u", user_options->optimized_kernel_enable, user_options->workload_profile); + } } else if (user_options->restore == true)