mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
Multiply SPEED in machine-readable status output with 1000, making it more accurate if performance is < 1H/ms
This commit is contained in:
parent
eae9329761
commit
be4076cba6
@ -645,10 +645,10 @@ void status_display_machine_readable (hashcat_ctx_t *hashcat_ctx)
|
||||
|
||||
if (device_info->skipped_dev == true) continue;
|
||||
|
||||
printf ("%" PRIu64 "\t", (u64) device_info->hashes_msec_dev);
|
||||
printf ("%" PRIu64 "\t", (u64) (device_info->hashes_msec_dev * 1000));
|
||||
|
||||
// that 1\t is for backward compatibility
|
||||
printf ("1\t");
|
||||
printf ("1000\t");
|
||||
}
|
||||
|
||||
printf ("EXEC_RUNTIME\t");
|
||||
|
Loading…
Reference in New Issue
Block a user