1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

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

This commit is contained in:
jsteube 2017-03-01 21:42:17 +01:00
parent eecac3f63b
commit 5f7c3590ba
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

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