Update Terminal.c

Increase verbosity for `--force` usage
pull/2230/head
Chick3nman 5 years ago committed by GitHub
parent 777ff34f94
commit b1016aee62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1139,15 +1139,34 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
"Hash.Target......: %s",
hashcat_status->hash_target);
if (user_options->force == true)
{
event_log_info (hashcat_ctx,
"Time.Started.....: %s, (%s)",
hashcat_status->time_started_absolute,
hashcat_status->time_started_relative);
}
else
{
event_log_info (hashcat_ctx,
"Time.Started.....: %s (%s)",
hashcat_status->time_started_absolute,
hashcat_status->time_started_relative);
}
if (user_options->force == true)
{
event_log_info (hashcat_ctx,
"Time.Estimated...: %s, (%s)",
hashcat_status->time_estimated_absolute,
hashcat_status->time_estimated_relative);
}
else
{
event_log_info (hashcat_ctx,
"Time.Estimated...: %s (%s)",
hashcat_status->time_estimated_absolute,
hashcat_status->time_estimated_relative);
}
switch (hashcat_status->guess_mode)
{

Loading…
Cancel
Save