diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-09-03 11:04:04 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-09-03 11:04:04 +0000 |
commit | cebd524c3853e79828cdf8299eb4ef61ef5238a8 (patch) | |
tree | 9fd976dc8c89e0f44a39409eb83a949b9d51de10 /usr.sbin | |
parent | 2c03ae11e243e5fbe9550eb9a10ab7adb79f9f8e (diff) |
; -> : in getopt optstring.
Diffstat (limited to 'usr.sbin')
-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; |