diff options
author | 2008-09-03 11:04:03 +0000 | |
---|---|---|
committer | 2008-09-03 11:04:03 +0000 | |
commit | 99c2f5b124392748051746c49f8e12f6db6fc0ce (patch) | |
tree | 08d28a45f5f32b21e75b0ce6f3d2f0aef7e89eb9 | |
parent | Missing break in case statement. (diff) | |
download | wireguard-openbsd-99c2f5b124392748051746c49f8e12f6db6fc0ce.tar.xz wireguard-openbsd-99c2f5b124392748051746c49f8e12f6db6fc0ce.zip |
; -> : in getopt optstring.
-rw-r--r-- | usr.sbin/ypldap/ypldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ypldap/ypldap.c b/usr.sbin/ypldap/ypldap.c index 3e48aceb793..f548aeec413 100644 --- a/usr.sbin/ypldap/ypldap.c +++ b/usr.sbin/ypldap/ypldap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypldap.c,v 1.4 2008/09/03 11:01:50 jsg Exp $ */ +/* $OpenBSD: ypldap.c,v 1.5 2008/09/03 11:04:03 jsg Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -365,7 +365,7 @@ main(int argc, char *argv[]) log_init(1); - while ((c = getopt(argc, argv, "dD;nf:v")) != -1) { + while ((c = getopt(argc, argv, "dD:nf:v")) != -1) { switch (c) { case 'd': debug = 2; |