diff --git a/src/main.c b/src/main.c index 8c766f793..6e28b8b3e 100644 --- a/src/main.c +++ b/src/main.c @@ -481,15 +481,15 @@ static void main_outerloop_mainscreen (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, * Optimizer constraints */ - event_log_info (hashcat_ctx, "Password length minimum: %u", hashconfig->pw_min); - event_log_info (hashcat_ctx, "Password length maximum: %u", hashconfig->pw_max); + event_log_info (hashcat_ctx, "Minimum password length supported by kernel: %u", hashconfig->pw_min); + event_log_info (hashcat_ctx, "Maximum password length supported by kernel: %u", hashconfig->pw_max); if (hashconfig->is_salted == true) { if (hashconfig->opti_type & OPTI_TYPE_RAW_HASH) { - event_log_info (hashcat_ctx, "Salt length minimum: %u", hashconfig->salt_min); - event_log_info (hashcat_ctx, "Salt length maximum: %u", hashconfig->salt_max); + event_log_info (hashcat_ctx, "Minimim salt length supported by kernel: %u", hashconfig->salt_min); + event_log_info (hashcat_ctx, "Maximum salt length supported by kernel: %u", hashconfig->salt_max); } }