Browse Source

fix getopt_long() args

pull/286/head
kevin 9 years ago
parent
commit
f5d0db0cb8
1 changed files with 1 additions and 1 deletions
  1. 2
      src/local.c

2
src/local.c

@ -936,7 +936,7 @@ int main(int argc, char **argv)
USE_TTY(); USE_TTY();
while ((c = getopt_long(argc, argv, "f:s:p:l:k:t:m:i:c:b:a:APuv",
while ((c = getopt_long(argc, argv, "f:s:p:l:k:t:m:i:c:b:a:A:P:uv",
long_options, &option_index)) != -1) { long_options, &option_index)) != -1) {
switch (c) { switch (c) {
case 0: case 0:

Loading…
Cancel
Save