From b2d88a0832e3106a414186a6f8ba038ca19ede11 Mon Sep 17 00:00:00 2001 From: philsmd Date: Fri, 10 Mar 2017 12:49:57 +0100 Subject: [PATCH] minor: fixed some comments about --skip/--limit/--keyspace --- src/hashcat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hashcat.c b/src/hashcat.c index 74536057d..0aa601956 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -574,7 +574,7 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx) if (rc_mask_init == -1) return -1; /** - * prevent the user from using --skip/--limit together w/ maskfile and or dictfile + * prevent the user from using --skip/--limit together with maskfile and/or multiple word lists */ if (user_options->skip != 0 || user_options->limit != 0) @@ -588,7 +588,7 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx) } /** - * prevent the user from using --keyspace together w/ maskfile and or dictfile + * prevent the user from using --keyspace together with maskfile and/or multiple word lists */ if (user_options->keyspace == true)