svn commit: r332283 - stable/10/sys/netinet/libalias

Michael Tuexen tuexen at FreeBSD.org
Sun Apr 8 16:26:17 UTC 2018


Author: tuexen
Date: Sun Apr  8 16:26:16 2018
New Revision: 332283
URL: https://svnweb.freebsd.org/changeset/base/332283

Log:
  MFC r327205:
  
  Fix an assignment. While there, do some whitespace cleanups.
  
  CID:	1008936

Modified:
  stable/10/sys/netinet/libalias/alias_sctp.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/libalias/alias_sctp.c
==============================================================================
--- stable/10/sys/netinet/libalias/alias_sctp.c	Sun Apr  8 16:24:37 2018	(r332282)
+++ stable/10/sys/netinet/libalias/alias_sctp.c	Sun Apr  8 16:26:16 2018	(r332283)
@@ -2114,31 +2114,31 @@ FindSctpGlobal(struct libalias *la, struct in_addr g_a
  * @return pointer to association or NULL
  */
 static struct sctp_nat_assoc*
-FindSctpLocalT(struct libalias *la,  struct in_addr g_addr, uint32_t l_vtag, uint16_t g_port, uint16_t l_port)
+FindSctpLocalT(struct libalias *la, struct in_addr g_addr, uint32_t l_vtag, uint16_t g_port, uint16_t l_port)
 {
 	u_int i;
 	struct sctp_nat_assoc *assoc = NULL, *lastmatch = NULL;
 	struct sctp_GlobalAddress *G_Addr = NULL;
 	int cnt = 0;
-  
+
 	if (l_vtag != 0) { /* an init packet, vtag==0 */
 		i = SN_TABLE_HASH(l_vtag, g_port, la->sctpNatTableSize);
 		LIST_FOREACH(assoc, &la->sctpTableGlobal[i], list_G) {
 			if ((assoc->g_vtag == l_vtag) && (assoc->g_port == g_port) && (assoc->l_port == l_port)) {
 				if (assoc->num_Gaddr) {
 					LIST_FOREACH(G_Addr, &(assoc->Gaddr), list_Gaddr) {
-						if(G_Addr->g_addr.s_addr == G_Addr->g_addr.s_addr)
-							return(assoc); /* full match */
+						if (G_Addr->g_addr.s_addr == g_addr.s_addr)
+							return (assoc); /* full match */
 					}
 				} else {
-					if (++cnt > 1) return(NULL);
+					if (++cnt > 1) return (NULL);
 					lastmatch = assoc;
 				}
 			}
 		}
 	}
 	/* If there is more than one match we do not know which local address to send to */
-	return( cnt ? lastmatch : NULL );
+	return (cnt ? lastmatch : NULL);
 }
 
 /** @ingroup Hash


More information about the svn-src-all mailing list