1
mirror of https://github.com/hashcat/hashcat synced 2024-11-24 14:27:14 +01:00

Merge pull request #3214 from philsmd/philsmd-cuda-main-driver

fixes #2560: mention "main driver" within the error message
This commit is contained in:
Jens Steube 2022-03-12 17:13:56 +01:00 committed by GitHub
commit 94013bdbd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}