iwd: Add -K to getopt optstring to fix short option.

This commit is contained in:
Andrzej Zaborowski 2015-04-17 17:17:49 +02:00 committed by Denis Kenzior
parent 300b4b1e7a
commit f424559af5
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ int main(int argc, char *argv[])
for (;;) {
int opt;
opt = getopt_long(argc, argv, "Bvh", main_options, NULL);
opt = getopt_long(argc, argv, "KBvh", main_options, NULL);
if (opt < 0)
break;