Skip to content

Commit

Permalink
Fix -w option
Browse files Browse the repository at this point in the history
  • Loading branch information
petertodd committed Jun 15, 2016
1 parent 43388c3 commit 0984cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class CDnsSeedOpts {
{0, 0, 0, 0}
};
int option_index = 0;
int c = getopt_long(argc, argv, "h:n:m:t:p:d:o:i:k:", long_options, &option_index);
int c = getopt_long(argc, argv, "h:n:m:t:p:d:o:i:k:w:", long_options, &option_index);
if (c == -1) break;
switch (c) {
case 'h': {
Expand Down

0 comments on commit 0984cac

Please sign in to comment.