From 1a0ebdcac70cbfc992fdacea6e46c5f77b60378e Mon Sep 17 00:00:00 2001
From: rwatson <rwatson@FreeBSD.org>
Date: Sun, 26 Oct 2008 19:33:22 +0000
Subject: Remove endearing but syntactically unnecessary "return;" statements
 directly before the final closeing brackets of some TCP functions.

MFC after:	3 days
---
 sys/netinet/tcp_input.c | 3 ---
 1 file changed, 3 deletions(-)

(limited to 'sys/netinet/tcp_input.c')

diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 7f25f57..1284376 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -925,7 +925,6 @@ drop:
 		free(s, M_TCPLOG);
 	if (m != NULL)
 		m_freem(m);
-	return;
 }
 
 static void
@@ -2529,7 +2528,6 @@ drop:
 	if (headlocked)
 		INP_INFO_WUNLOCK(&V_tcbinfo);
 	m_freem(m);
-	return;
 }
 
 /*
@@ -2588,7 +2586,6 @@ tcp_dropwithreset(struct mbuf *m, struct tcphdr *th, struct tcpcb *tp,
 	return;
 drop:
 	m_freem(m);
-	return;
 }
 
 /*
-- 
cgit v1.1