diff options
-rw-r--r-- | sys/netinet/tcp_input.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_sack.c | 1 | ||||
-rw-r--r-- | sys/netinet/tcp_syncache.c | 2 |
3 files changed, 0 insertions, 6 deletions
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; } /* diff --git a/sys/netinet/tcp_sack.c b/sys/netinet/tcp_sack.c index f43e4e7..3c6ceca 100644 --- a/sys/netinet/tcp_sack.c +++ b/sys/netinet/tcp_sack.c @@ -680,5 +680,4 @@ tcp_sack_adjust(struct tcpcb *tp) if (SEQ_LT(tp->snd_nxt, cur->end)) return; tp->snd_nxt = tp->snd_fack; - return; } diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c index 19c5b7e..c9f3b4f 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -1243,7 +1243,6 @@ done: *lsop = NULL; m_freem(m); } - return; } static int @@ -1576,7 +1575,6 @@ syncookie_generate(struct syncache_head *sch, struct syncache *sc, } V_tcpstat.tcps_sc_sendcookie++; - return; } static struct syncache * |