Skip to content

Commit

Permalink
Update keyhunt.cpp
Browse files Browse the repository at this point in the history
-h is back
  • Loading branch information
seega committed May 7, 2023
1 parent 3a33e85 commit 86667b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion keyhunt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,11 @@ int main(int argc, char **argv) {

printf("[+] Version %s, developed by AlbertoBSD\n",version);

while ((c = getopt(argc, argv, "de6hMqRSB:b:c:C:E:f:I:k:l:m:N:n:p:r:s:t:v:G:8:z:")) != -1) {
while ((c = getopt(argc, argv, "deh6MqRSB:b:c:C:E:f:I:k:l:m:N:n:p:r:s:t:v:G:8:z:")) != -1) {
switch(c) {
case 'h':
menu();
break;
case '6':
FLAGSKIPCHECKSUM = 1;
fprintf(stderr,"[W] Skipping checksums on files\n");
Expand Down

0 comments on commit 86667b0

Please sign in to comment.