Prepare hlfmt.c for combination of --username and --dynamic-x

This commit is contained in:
jsteube 2023-11-06 20:05:09 +00:00
parent 81edbfd30a
commit 09915c7243
1 changed files with 6 additions and 2 deletions

View File

@ -28,7 +28,11 @@ static void hlfmt_hash_hashcat (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, char *l
const user_options_t *user_options = hashcat_ctx->user_options;
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
if (user_options->username == true)
if ((user_options->username == true) && (user_options->dynamic_x == true))
{
}
else if (user_options->username == true)
{
char *pos = line_buf;
size_t len = line_len;
@ -48,7 +52,7 @@ static void hlfmt_hash_hashcat (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, char *l
*hashbuf_pos = pos;
*hashbuf_len = len;
}
if (user_options->dynamic_x == true)
else if (user_options->dynamic_x == true)
{
}