svn commit: r186961 - head/sys/netinet

Adrian Chadd adrian at FreeBSD.org
Fri Jan 9 09:21:23 PST 2009


Author: adrian
Date: Fri Jan  9 17:21:22 2009
New Revision: 186961
URL: http://svn.freebsd.org/changeset/base/186961

Log:
  Fix indentation; add FALLTHROUGH.
  
  Thanks Max!

Modified:
  head/sys/netinet/ip_output.c

Modified: head/sys/netinet/ip_output.c
==============================================================================
--- head/sys/netinet/ip_output.c	Fri Jan  9 17:18:17 2009	(r186960)
+++ head/sys/netinet/ip_output.c	Fri Jan  9 17:21:22 2009	(r186961)
@@ -876,9 +876,10 @@ ip_ctloutput(struct socket *so, struct s
 #if defined(IP_NONLOCALBIND)
 		case IP_NONLOCALOK:
 			if (! ip_nonlocalok) {
-			error = ENOPROTOOPT;
-			break;
-		}
+				error = ENOPROTOOPT;
+				break;
+			}
+			/* FALLTHROUGH */
 #endif
 		case IP_TOS:
 		case IP_TTL:


More information about the svn-src-head mailing list