From be8f29ca39c68dfe81777a45b7a07778eee8853a Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Thu, 9 May 2019 16:30:08 +0200 Subject: [PATCH] Only warn about broken NVIDIA driver --- src/backend.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend.c b/src/backend.c index 7639e63c2..75fe65270 100644 --- a/src/backend.c +++ b/src/backend.c @@ -6227,7 +6227,8 @@ int backend_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime) if (nv_warn == true) { - event_log_error (hashcat_ctx, "* Device #%u: Outdated or broken NVIDIA driver '%s' detected!", device_id + 1, device_param->opencl_driver_version); + event_log_warning (hashcat_ctx, "* Device #%u: Outdated or broken NVIDIA driver '%s' detected!", device_id + 1, device_param->opencl_driver_version); + event_log_warning (hashcat_ctx, NULL); event_log_warning (hashcat_ctx, "You are STRONGLY encouraged to use the officially supported NVIDIA driver."); event_log_warning (hashcat_ctx, "See hashcat's homepage for officially supported NVIDIA drivers.");