From 8c2756d74df217c4230a5b694e1aff33133a8bd9 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 13 Feb 2022 12:41:27 +0100 Subject: [PATCH] fix wording --- docs/changes.txt | 2 +- src/user_options.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changes.txt b/docs/changes.txt index ee2a7418a..1fc8259ee 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -71,7 +71,7 @@ - Unit tests: Updated test.sh to set default device-type to CPU with Apple Intel and added -f (--force) option - Usage Screen: On windows console, wait for any keypress if usage_mini_print() is used - User Options: Add new module function module_hash_decode_postprocess() to override hash specific configurations from command line -- User Options: Change --backend-info/-I option type, from bool to int +- User Options: Change --backend-info/-I option type, from bool to uint * changes v6.2.4 -> v6.2.5 diff --git a/src/user_options.c b/src/user_options.c index 7960c0972..dec673c11 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1382,7 +1382,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) if (user_options->backend_info > 2) { - event_log_error (hashcat_ctx, "Invalid --backend-info/-I value, must have a value greater than or equal to 0 and lower than 3."); + event_log_error (hashcat_ctx, "Invalid --backend-info/-I value, must have a value greater or equal to 0 and lower than 3."); return -1; }