Override --quiet and show final status screen in case --status is used

Fixes #1720
pull/1726/head
Jens Steube 6 years ago
parent 4359f61f84
commit adb1686b9a

@ -36,6 +36,7 @@
- Increased the maximum size of edata2 in Kerberos 5 TGS-REP etype 23
- Make the masks parser more restrictive by rejecting a single '?' at the end of the mask (use ?? instead)
- Removed duplicate words in the dictionary file example.dict
- Override --quiet and show final status screen in case --status is used
- Work around some AMD OpenCL runtime segmentation faults
- Work around some padding issues with host compilers and OpenCL JiT on 32 and 64-bit systems

@ -306,6 +306,10 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB
{
status_display (hashcat_ctx);
}
else if (user_options->status == true)
{
status_display (hashcat_ctx);
}
else
{
if (user_options->quiet == false)

Loading…
Cancel
Save