1
mirror of https://github.com/hashcat/hashcat synced 2024-11-28 05:21:38 +01:00

Fix missing TOPID in hashcat.log for user options

This commit is contained in:
jsteube 2016-10-29 23:21:52 +02:00
parent 7147d659f9
commit b16c15c151

View File

@ -1014,10 +1014,6 @@ int hashcat_session_execute (hashcat_ctx_t *hashcat_ctx)
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
user_options_t *user_options = hashcat_ctx->user_options;
// add all user options to logfile in case we want to debug some user session
user_options_logger (hashcat_ctx);
// start logfile entry
const time_t proc_start = time (NULL);
@ -1026,6 +1022,10 @@ int hashcat_session_execute (hashcat_ctx_t *hashcat_ctx)
logfile_top_msg ("START");
// add all user options to logfile in case we want to debug some user session
user_options_logger (hashcat_ctx);
// read dictionary cache
dictstat_read (hashcat_ctx);