diff options
author | 2008-09-03 11:01:50 +0000 | |
---|---|---|
committer | 2008-09-03 11:01:50 +0000 | |
commit | b19d69b60617b587a73e81c56b80a60a44670b8e (patch) | |
tree | 52a63845699ff6ff6db09edcea0a0c84862b0094 | |
parent | Remove dead code: ip6_copypktopts() is not used anywhere. (diff) | |
download | wireguard-openbsd-b19d69b60617b587a73e81c56b80a60a44670b8e.tar.xz wireguard-openbsd-b19d69b60617b587a73e81c56b80a60a44670b8e.zip |
Missing break in case statement.
-rw-r--r-- | usr.sbin/ypldap/ypldap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ypldap/ypldap.c b/usr.sbin/ypldap/ypldap.c index bb90f9b0908..3e48aceb793 100644 --- a/usr.sbin/ypldap/ypldap.c +++ b/usr.sbin/ypldap/ypldap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypldap.c,v 1.3 2008/07/02 17:36:15 pyr Exp $ */ +/* $OpenBSD: ypldap.c,v 1.4 2008/09/03 11:01:50 jsg Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -378,6 +378,7 @@ main(int argc, char *argv[]) case 'n': debug = 2; opts |= YPLDAP_OPT_NOACTION; + break; case 'f': conffile = optarg; break; |