diff options
author | 2005-02-25 14:21:20 +0000 | |
---|---|---|
committer | 2005-02-25 14:21:20 +0000 | |
commit | 4b629bd2afc868548193c0b34a5c2d081757ba9c (patch) | |
tree | 885e7349ea674a1b7633bbbda724a2a1ce9dd244 | |
parent | Zap -P option. It has never done anything. While there tweak descripton of (diff) | |
download | wireguard-openbsd-4b629bd2afc868548193c0b34a5c2d081757ba9c.tar.xz wireguard-openbsd-4b629bd2afc868548193c0b34a5c2d081757ba9c.zip |
forgot to remove -P from getopt().
-rw-r--r-- | sbin/isakmpd/isakmpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/isakmpd.c b/sbin/isakmpd/isakmpd.c index 55c8d0a6e1e..8c742b67353 100644 --- a/sbin/isakmpd/isakmpd.c +++ b/sbin/isakmpd/isakmpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isakmpd.c,v 1.71 2005/02/25 14:14:31 hshoexer Exp $ */ +/* $OpenBSD: isakmpd.c,v 1.72 2005/02/25 14:21:20 hshoexer Exp $ */ /* $EOM: isakmpd.c,v 1.54 2000/10/05 09:28:22 niklas Exp $ */ /* @@ -136,7 +136,7 @@ parse_args(int argc, char *argv[]) int do_packetlog = 0; #endif - while ((ch = getopt(argc, argv, "46ac:dD:f:i:KnN:p:P:Ll:r:R:v")) != -1) { + while ((ch = getopt(argc, argv, "46ac:dD:f:i:KnN:p:Ll:r:R:v")) != -1) { switch (ch) { case '4': bind_family |= BIND_FAMILY_INET4; |