Status screen: Do not try to clear prompt in --quiet mode

pull/1147/head
jsteube 7 years ago
parent eecac3f63b
commit 5f7c3590ba

@ -100,6 +100,7 @@
- Rule Engine: Fixed several memory leaks in case loading of rules failed
- Session Management: Fixed several memory leaks in case profile- or install-folder setup failed
- Sessions: Move out handling of multiple instance from restore file into separate pidfile
- Status screen: Do not try to clear prompt in --quiet mode
- Threads: Restored strerror as %m is unsupported by the BSDs
- Wordlists: Disable dictstat handling for hash-mode 3000 as it virtually creates words in the wordlist which is not the case for other modes
- Wordlists: Fixed memory leak in case access a file in a wordlist folder fails

@ -243,7 +243,7 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB
if ((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK))
{
if (user_options->speed_only == false)
if ((user_options->speed_only == false) && (user_options->quiet == false))
{
clear_prompt ();
}

Loading…
Cancel
Save