1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-16 17:42:04 +00:00

Merge pull request #3584 from zyronix/error_log_gpu_temp_abort

Log error for gpu temp failure when in quiet mode
This commit is contained in:
Jens Steube 2023-01-21 07:50:36 +01:00 committed by GitHub
commit 2f498d22ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}