svn commit: r194371 - projects/ngroups/sys/netinet/ipfw

Brooks Davis brooks at FreeBSD.org
Wed Jun 17 15:57:54 UTC 2009


Author: brooks
Date: Wed Jun 17 15:57:53 2009
New Revision: 194371
URL: http://svn.freebsd.org/changeset/base/194371

Log:
  Fix a style(9) bug.
  
  Reported by:	jhb

Modified:
  projects/ngroups/sys/netinet/ipfw/ip_fw2.c

Modified: projects/ngroups/sys/netinet/ipfw/ip_fw2.c
==============================================================================
--- projects/ngroups/sys/netinet/ipfw/ip_fw2.c	Wed Jun 17 15:48:50 2009	(r194370)
+++ projects/ngroups/sys/netinet/ipfw/ip_fw2.c	Wed Jun 17 15:57:53 2009	(r194371)
@@ -2016,7 +2016,7 @@ check_uidgid(ipfw_insn_u32 *insn, int pr
 	if (inp && *ugid_lookupp == 0) {
 		INP_LOCK_ASSERT(inp);
 		if (inp->inp_socket != NULL) {
-			*uc=crhold(inp->inp_cred);
+			*uc = crhold(inp->inp_cred);
 			*ugid_lookupp = 1;
 		} else
 			*ugid_lookupp = -1;
@@ -2049,7 +2049,7 @@ check_uidgid(ipfw_insn_u32 *insn, int pr
 				dst_ip, htons(dst_port),
 				wildcard, NULL);
 		if (pcb != NULL) {
-			*uc=crhold(inp->inp_cred);
+			*uc = crhold(inp->inp_cred);
 			*ugid_lookupp = 1;
 		}
 		INP_INFO_RUNLOCK(pi);


More information about the svn-src-projects mailing list