Improve warning message wording

The current warning message makes it sound like the optimized kernel exists but isn't being used.  This rewording makes it clear that the optimized kernel simply doesn't exist.
This commit is contained in:
Marcus T
2020-10-20 13:56:39 -04:00
committed by GitHub
parent 15bf8b7302
commit ee3b5da25b

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 needed - falling back to pure kernel");
event_log_warning (hashcat_ctx, "Optimized kernel requested but not available - falling back to pure kernel");
event_log_warning (hashcat_ctx, NULL);
}
}