summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_output.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-05-21 20:47:31 +0000
committerpeter <peter@FreeBSD.org>1996-05-21 20:47:31 +0000
commit33a97219e221a75e60ddc82377f9cde4b2975989 (patch)
treec46265702c028a9e9ca03768710007e6ab2470e0 /sys/netinet/ip_output.c
parent8cff178a4c62b4756e7e669a3a7c7ac4992bd309 (diff)
downloadFreeBSD-src-33a97219e221a75e60ddc82377f9cde4b2975989.zip
FreeBSD-src-33a97219e221a75e60ddc82377f9cde4b2975989.tar.gz
Fix an embarresing error on my part that made the IP_PORTRANGE options
return a failure code (even though it worked). This commit brought to you by the 'C' keyword "break".. :-)
Diffstat (limited to 'sys/netinet/ip_output.c')
-rw-r--r--sys/netinet/ip_output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index d937c28..6e1f90d 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
- * $Id: ip_output.c,v 1.36 1996/04/21 13:47:43 bde Exp $
+ * $Id: ip_output.c,v 1.37 1996/05/06 17:42:13 wollman Exp $
*/
#define _IP_VHL
@@ -657,6 +657,7 @@ ip_ctloutput(op, so, level, optname, mp)
break;
}
}
+ break;
default:
error = ENOPROTOOPT;
OpenPOWER on IntegriCloud