Skip to content

Commit cab47cf

Browse files
committed
-h command line option for help.
1 parent 1484350 commit cab47cf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/direwolf.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ int main (int argc, char *argv[])
373373

374374
/* ':' following option character means arg is required. */
375375

376-
c = getopt_long(argc, argv, "P:B:gjJD:U:c:pxr:b:n:d:q:t:ul:L:Sa:E:T:e:X:",
376+
c = getopt_long(argc, argv, "hP:B:gjJD:U:c:pxr:b:n:d:q:t:ul:L:Sa:E:T:e:X:",
377377
long_options, &option_index);
378378
if (c == -1)
379379
break;
@@ -504,9 +504,10 @@ int main (int argc, char *argv[])
504504
}
505505
break;
506506

507+
case 'h': // -h for help
507508
case '?':
508509

509-
/* Unknown option message was already printed. */
510+
/* For '?' unknown option message was already printed. */
510511
usage (argv);
511512
break;
512513

0 commit comments

Comments
 (0)