mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-23 15:18:16 +00:00
Status screen: Do not try to clear prompt in --quiet mode
This commit is contained in:
parent
eecac3f63b
commit
5f7c3590ba
@ -100,6 +100,7 @@
|
|||||||
- Rule Engine: Fixed several memory leaks in case loading of rules failed
|
- 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
|
- 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
|
- 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
|
- 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: 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
|
- 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_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 ();
|
clear_prompt ();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user