From ac0559f7a4b29007a9e0aaf8b1caeb25672671b5 Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 6 Mar 2019 16:35:17 +0100 Subject: [PATCH] Change the unstable_warning message to the user to make clear it's not a hashcat issue --- src/opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opencl.c b/src/opencl.c index ccd9a83e2..31e11db67 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -4509,7 +4509,7 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx) if ((unstable_warning == true) && (user_options->force == false)) { - event_log_warning (hashcat_ctx, "* Device #%u: Skipping unstable hash-mode %u for this device.", device_id + 1, hashconfig->hash_mode); + event_log_warning (hashcat_ctx, "* Device #%u: Skipping hash-mode %u - known OpenCL/Driver issue (not a hashcat issue)", device_id + 1, hashconfig->hash_mode); event_log_warning (hashcat_ctx, " You can use --force to override, but do not report related errors."); device_param->skipped_warning = true;