From cd33a8a2002256ad285eab7eb981ccab2fe81ef3 Mon Sep 17 00:00:00 2001 From: philsmd <921533+philsmd@users.noreply.github.com> Date: Wed, 9 Mar 2022 18:15:54 +0100 Subject: [PATCH] fixes #2560: mention "main driver" within the error message --- src/backend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend.c b/src/backend.c index 9da4ede0e..24cdf6462 100644 --- a/src/backend.c +++ b/src/backend.c @@ -7045,12 +7045,12 @@ int backend_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime) { if (backend_ctx->rc_cuda_init == -1) { - event_log_warning (hashcat_ctx, "Failed to initialize NVIDIA CUDA library."); + event_log_warning (hashcat_ctx, "Failed to initialize the NVIDIA main driver CUDA runtime library."); event_log_warning (hashcat_ctx, NULL); } else { - event_log_warning (hashcat_ctx, "Successfully initialized NVIDIA CUDA library."); + event_log_warning (hashcat_ctx, "Successfully initialized the NVIDIA main driver CUDA runtime library."); event_log_warning (hashcat_ctx, NULL); }