mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-22 05:31:11 +00:00
Update status output to show new founds when >=1
Recovered.New are only shown then >1 instead of >=1
This commit is contained in:
parent
ec7eae9886
commit
f0037d9368
@ -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