diff options
author | Jeff Layton <jlayton@samba.org> | 2011-01-05 10:52:19 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2011-01-05 10:52:19 -0500 |
commit | 7075a466159e59a46575739cc89b8d8a8c3ea3bc (patch) | |
tree | b9342a932527e02f132f4ea4d178db6a77306a0c | |
parent | f240ebe98b881f3daadf229bb24501829d3731ac (diff) | |
download | cifs-utils-7075a466159e59a46575739cc89b8d8a8c3ea3bc.tar.gz cifs-utils-7075a466159e59a46575739cc89b8d8a8c3ea3bc.tar.bz2 cifs-utils-7075a466159e59a46575739cc89b8d8a8c3ea3bc.zip |
cifs.upcall: add 'l' to getopt_long string
Reported-by: Stefan Walter <walteste@inf.ethz.ch>
Signed-off-by: Jeff Layton <jlayton@samba.org>
Reviewed-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
-rw-r--r-- | cifs.upcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cifs.upcall.c b/cifs.upcall.c index 648a138..1ffcd7c 100644 --- a/cifs.upcall.c +++ b/cifs.upcall.c @@ -680,7 +680,7 @@ int main(const int argc, char *const argv[]) openlog(prog, 0, LOG_DAEMON); - while ((c = getopt_long(argc, argv, "ctv", long_options, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "cltv", long_options, NULL)) != -1) { switch (c) { case 'c': /* legacy option -- skip it */ |