1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-10 15:51:10 +00:00

fixes #2560: mention "main driver" within the error message

This commit is contained in:
philsmd 2022-03-09 18:15:54 +01:00 committed by GitHub
parent 2b89c69cc4
commit cd33a8a200
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);
}