svn commit: r244665 - head/sys/netinet
Gleb Smirnoff
glebius at FreeBSD.org
Mon Dec 24 21:35:49 UTC 2012
Author: glebius
Date: Mon Dec 24 21:35:48 2012
New Revision: 244665
URL: http://svnweb.freebsd.org/changeset/base/244665
Log:
Minor style(9) changes:
- Remove declaration in initializer.
- Add empty line between logical blocks.
Modified:
head/sys/netinet/in.c
Modified: head/sys/netinet/in.c
==============================================================================
--- head/sys/netinet/in.c Mon Dec 24 20:33:37 2012 (r244664)
+++ head/sys/netinet/in.c Mon Dec 24 21:35:48 2012 (r244665)
@@ -799,7 +799,7 @@ in_ifinit(struct ifnet *ifp, struct in_i
int masksupplied, int vhid)
{
register u_long i = ntohl(sin->sin_addr.s_addr);
- int flags = RTF_UP, error = 0;
+ int flags, error = 0;
IN_IFADDR_WLOCK();
if (ia->ia_addr.sin_family == AF_INET)
@@ -843,9 +843,11 @@ in_ifinit(struct ifnet *ifp, struct in_i
}
ia->ia_subnet = i & ia->ia_subnetmask;
in_socktrim(&ia->ia_sockmask);
+
/*
* Add route for the network.
*/
+ flags = RTF_UP;
ia->ia_ifa.ifa_metric = ifp->if_metric;
if (ifp->if_flags & IFF_BROADCAST) {
if (ia->ia_subnetmask == IN_RFC3021_MASK)
More information about the svn-src-head
mailing list