1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00

Add the separator after original-word in --debug-mode=5 (fixes #3587)

This commit is contained in:
justpretending 2023-01-24 17:01:43 +07:00
parent b166bdcfac
commit c923515ad3

View File

@ -73,7 +73,7 @@ void debugfile_write_append (hashcat_ctx_t *hashcat_ctx, const u8 *rule_buf, con
{
debugfile_format_plain (hashcat_ctx, orig_plain_ptr, orig_plain_len);
if ((debug_mode == 3) || (debug_mode == 4)) hc_fputc (':', &debugfile_ctx->fp);
if ((debug_mode == 3) || (debug_mode == 4) || (debug_mode == 5)) hc_fputc (':', &debugfile_ctx->fp);
}
hc_fwrite ((void *) rule_buf, rule_len, 1, &debugfile_ctx->fp);