From 4b6654b5030764dbfffd7905645b0d9ca8b9a5ab Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Fri, 24 Sep 2021 13:35:18 +0200 Subject: [PATCH] Fix unstable plugin to driver warning --- src/backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend.c b/src/backend.c index 51d5a17cf..26d81bd82 100644 --- a/src/backend.c +++ b/src/backend.c @@ -10753,7 +10753,7 @@ int backend_session_begin (hashcat_ctx_t *hashcat_ctx) if ((unstable_warning == true) && (user_options->force == false)) { - event_log_warning (hashcat_ctx, "* Device #%u: Skipping hash-mode %u)", device_id + 1, hashconfig->hash_mode); + event_log_warning (hashcat_ctx, "* Device #%u: Skipping (hash-mode %u)", device_id + 1, hashconfig->hash_mode); event_log_warning (hashcat_ctx, " This is due to a known CUDA/HIP/OpenCL runtime/driver issue (not a hashcat issue)"); event_log_warning (hashcat_ctx, " You can use --force to override, but do not report related errors.");