1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 08:10:59 +00:00

Fix invalid Time.Estimated value in status screen

This commit is contained in:
jsteube 2016-10-27 01:12:06 +02:00
parent 05634fe727
commit 5accadb511

View File

@ -683,7 +683,7 @@ char *status_get_time_started_absolute (const hashcat_ctx_t *hashcat_ctx)
if (start[start_len - 1] == '\n') start[start_len - 1] = 0; if (start[start_len - 1] == '\n') start[start_len - 1] = 0;
if (start[start_len - 2] == '\r') start[start_len - 2] = 0; if (start[start_len - 2] == '\r') start[start_len - 2] = 0;
return start; return strdup (start);
} }
char *status_get_time_started_relative (const hashcat_ctx_t *hashcat_ctx) char *status_get_time_started_relative (const hashcat_ctx_t *hashcat_ctx)
@ -779,7 +779,7 @@ char *status_get_time_estimated_absolute (const hashcat_ctx_t *hashcat_ctx)
if (etc[etc_len - 1] == '\n') etc[etc_len - 1] = 0; if (etc[etc_len - 1] == '\n') etc[etc_len - 1] = 0;
if (etc[etc_len - 2] == '\r') etc[etc_len - 2] = 0; if (etc[etc_len - 2] == '\r') etc[etc_len - 2] = 0;
return etc; return strdup (etc);
} }
char *status_get_time_estimated_relative (const hashcat_ctx_t *hashcat_ctx) char *status_get_time_estimated_relative (const hashcat_ctx_t *hashcat_ctx)