Merge pull request #3584 from zyronix/error_log_gpu_temp_abort

Log error for gpu temp failure when in quiet mode
pull/3588/head
Jens Steube 1 year ago committed by GitHub
commit 2f498d22ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -829,9 +829,8 @@ static void main_monitor_temp_abort (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MA
const user_options_t *user_options = hashcat_ctx->user_options;
const user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
if (user_options->quiet == true) return;
if ((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK))
if (((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK)) && user_options->quiet == false)
{
clear_prompt (hashcat_ctx);
}

Loading…
Cancel
Save