mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-14 03:39:09 +00:00
Merge pull request #3264 from TheWorkingDeveloper/patch-1
Update status output to show new founds when >=1
This commit is contained in:
commit
f31dcc5d1a
@ -2308,7 +2308,7 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
|
||||
const int digests_new = hashcat_status->digests_done - hashcat_status->digests_done_pot;
|
||||
const double digests_new_perc = (double) digests_new / (double) hashcat_status->digests_cnt * 100;
|
||||
|
||||
if (digests_new > 1)
|
||||
if (digests_new >= 1)
|
||||
{
|
||||
event_log_info (hashcat_ctx,
|
||||
"Recovered.Total..: %u/%u (%.2f%%) Digests, %u/%u (%.2f%%) Salts",
|
||||
@ -2341,7 +2341,7 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
|
||||
const int digests_new = hashcat_status->digests_done - hashcat_status->digests_done_pot;
|
||||
const double digests_new_perc = (double) digests_new / (double) hashcat_status->digests_cnt * 100;
|
||||
|
||||
if (digests_new > 1)
|
||||
if (digests_new >= 1)
|
||||
{
|
||||
event_log_info (hashcat_ctx,
|
||||
"Recovered.Total..: %u/%u (%.2f%%) Digests",
|
||||
|
Loading…
Reference in New Issue
Block a user