Improve warning message wording

The comments earlier in the file indicate an optimized kernel may be listed as unavailable either because A) it doesn't exist or B) provides no benefit.
This updates the warning message to make that more clear.
This commit is contained in:
Marcus T
2020-10-21 16:23:38 -04:00
committed by GitHub
parent ee3b5da25b
commit 5919641285

View File

@@ -342,7 +342,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
if (user_options->quiet == false)
{
event_log_warning (hashcat_ctx, "Kernel %s:", source_file);
event_log_warning (hashcat_ctx, "Optimized kernel requested but not available - falling back to pure kernel");
event_log_warning (hashcat_ctx, "Optimized kernel requested but not available or not required - falling back to pure kernel");
event_log_warning (hashcat_ctx, NULL);
}
}