From 5bbd06425fcb05e486d7433ea11d551c9c015062 Mon Sep 17 00:00:00 2001 From: Andras Gemes Date: Fri, 3 Feb 2023 14:32:00 +0100 Subject: [PATCH] Fixes hashcat#3580: bug in --skip/--limit w/ --stdout --- src/hashcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hashcat.c b/src/hashcat.c index 57d91b0d9..e6602af7c 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -787,7 +787,7 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx) { if ((mask_ctx->masks_cnt > 1) || (straight_ctx->dicts_cnt > 1)) { - event_log_error (hashcat_ctx, "Use of --skip/--limit is not supported with --increment or mask files."); + event_log_error (hashcat_ctx, "Use of --skip/--limit is not supported with --increment, mask files, or --stdout."); return -1; }