diff options
Diffstat (limited to 'client/client.c')
-rw-r--r-- | client/client.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/client.c b/client/client.c index fb94ea5..13d9073 100644 --- a/client/client.c +++ b/client/client.c @@ -86,6 +86,10 @@ static void parseArgs(int *argc, char **argv[]) { 0, 0, 0, 0 } }; + /* TODO: getopt does not support -sf, -sb etc.. + * Either break the interface and make them --sf, --sb (like they are now), + * or parse them before running getopt.. */ + for (;;) { int opt = getopt_long(*argc, *argv, "hviw:I:p:Ibf:m", opts, NULL); if (opt < 0) |