From 9c0655dc8344d9b4ebe2a58e0afd32bf804a9fa0 Mon Sep 17 00:00:00 2001 From: TheWorkingDeveloper <33965786+TheWorkingDeveloper@users.noreply.github.com> Date: Wed, 25 Aug 2021 12:49:20 +0200 Subject: [PATCH] Align formatting Align formatting of the benchmark with the status changes. Removed an extra newline which reduces clutter and groups together the mode and the result --- src/main.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index 2a2b680c7..8431ce938 100644 --- a/src/main.c +++ b/src/main.c @@ -452,14 +452,12 @@ static void main_outerloop_mainscreen (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, { if ((hashconfig->attack_exec == ATTACK_EXEC_OUTSIDE_KERNEL) && (hashconfig->is_salted == true)) { - event_log_info (hashcat_ctx, "Hashmode: %d - %s (Iterations: %d)", hashconfig->hash_mode, hashconfig->hash_name, hashes[0].salts_buf[0].salt_iter); + event_log_info (hashcat_ctx, "Hash.Mode........: %d (%s) (Iterations: %d)", hashconfig->hash_mode, hashconfig->hash_name, hashes[0].salts_buf[0].salt_iter); } else { - event_log_info (hashcat_ctx, "Hashmode: %d - %s", hashconfig->hash_mode, hashconfig->hash_name); + event_log_info (hashcat_ctx, "Hash.Mode........: %d (%s)", hashconfig->hash_mode, hashconfig->hash_name); } - - event_log_info (hashcat_ctx, NULL); } }