Skip to content

Commit

Permalink
Merge #41: Fix -w option
Browse files Browse the repository at this point in the history
0984cac Fix -w option (Peter Todd)
  • Loading branch information
sipa committed Jun 23, 2016
2 parents 43388c3 + 0984cac commit 0ec6e14
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 0ec6e14

Please sign in to comment.