diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-07-28 19:42:46 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-07-28 19:42:46 +0300 |
commit | a9ddb043cc9742ca8b0d7c6828f92c4b59085e43 (patch) | |
tree | 3abded737ac4dce867cbc5243b81574a91ae7e17 | |
parent | 0e42f3c4ee16bac2d8a63cd95034fb4b570a4f38 (diff) |
getopt fix
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ int main(int argc, char* argv[]) {0, 0, 0, 0} }; - while ((opt = getopt_long(argc, argv, "+hn:f:u:g:", long_options, NULL)) != EOF) { + while ((opt = getopt_long(argc, argv, "+hn:f:u:g:e:", long_options, NULL)) != EOF) { switch (opt) { case 'h': usage(argv[0]); |