From d2604d08d072918e07c0aecd3963f90def200dd5 Mon Sep 17 00:00:00 2001 From: Michael Tuexen Date: Sun, 1 Aug 2010 08:06:59 +0000 Subject: [PATCH] Cleanup code. MFC after: 2 weeks --- sys/netinet/sctp_output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index d902e159f8c..16bce28a07d 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -9748,8 +9748,7 @@ sctp_fill_in_rest: unsigned int cnt_of_skipped = 0; TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { - if ((at->sent != SCTP_FORWARD_TSN_SKIP) /* && (at->sent != - SCTP_DATAGRAM_ACKED) */ ) { + if (at->sent != SCTP_FORWARD_TSN_SKIP) { /* no more to look at */ break; }