svn commit: r300772 - head/sys/netgraph/netflow

Jung-uk Kim jkim at FreeBSD.org
Thu May 26 19:17:53 UTC 2016


Author: jkim
Date: Thu May 26 19:17:51 2016
New Revision: 300772
URL: https://svnweb.freebsd.org/changeset/base/300772

Log:
  Fix style(9).

Modified:
  head/sys/netgraph/netflow/netflow.c

Modified: head/sys/netgraph/netflow/netflow.c
==============================================================================
--- head/sys/netgraph/netflow/netflow.c	Thu May 26 18:57:26 2016	(r300771)
+++ head/sys/netgraph/netflow/netflow.c	Thu May 26 19:17:51 2016	(r300772)
@@ -469,7 +469,8 @@ hash6_insert(priv_p priv, struct flow_ha
 				fle6->f.n.next_hop6 =
 				    ((struct sockaddr_in6 *)&rt_gateway)->sin6_addr;
 
-			fle6->f.dst_mask = ip6_masklen(&sin6_mask.sin6_addr, &info);
+			fle6->f.dst_mask =
+			    ip6_masklen(&sin6_mask.sin6_addr, &info);
 
 			rib_free_info(&info);
 		}
@@ -489,7 +490,8 @@ hash6_insert(priv_p priv, struct flow_ha
 
 		if (rib_lookup_info(r->fib, (struct sockaddr *)&sin6, 0, 0,
 		    &info) == 0)
-			fle6->f.src_mask = ip6_masklen(&sin6_mask.sin6_addr, &info);
+			fle6->f.src_mask =
+			    ip6_masklen(&sin6_mask.sin6_addr, &info);
 	}
 
 	/* Push new flow at the and of hash. */


More information about the svn-src-head mailing list