From 348221c15c3e609724f9e15776c48aaf999da53b Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Sun, 19 May 2019 04:59:33 -0800 Subject: [PATCH] minor tweaks to hash-count min/max language --- src/hashcat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hashcat.c b/src/hashcat.c index aa3cbc94f..7a3838c43 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -573,14 +573,14 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx) if (hashes->digests_cnt < hashconfig->hashes_count_min) { - event_log_error (hashcat_ctx, "Too less hashes loaded, minimum is %u for this hash-mode.", hashconfig->hashes_count_min); + event_log_error (hashcat_ctx, "Not enough hashes loaded - minimum is %u for this hash-mode.", hashconfig->hashes_count_min); return -1; } if (hashes->digests_cnt > hashconfig->hashes_count_max) { - event_log_error (hashcat_ctx, "Too many hashes loaded, maximum is %u for this hash-mode.", hashconfig->hashes_count_max); + event_log_error (hashcat_ctx, "Too many hashes loaded - maximum is %u for this hash-mode.", hashconfig->hashes_count_max); return -1; }