Skip to content

Commit

Permalink
Merge pull request #2440 from roycewilliams/master
Browse files Browse the repository at this point in the history
wrap kernel optimization warning
  • Loading branch information
jsteube committed Jun 10, 2020
2 parents 0279572 + cafb3bd commit d9e54cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/interface.c
Expand Up @@ -354,7 +354,12 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
{
if (hashconfig->has_optimized_kernel == false)
{
if (user_options->quiet == false) event_log_warning (hashcat_ctx, "%s: Optimized kernel requested but not needed - falling back to pure kernel", source_file);
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, NULL);
}
}
else
{
Expand Down

0 comments on commit d9e54cd

Please sign in to comment.