svn commit: r319394 - stable/11/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Jun 1 08:09:55 UTC 2017


Author: tuexen
Date: Thu Jun  1 08:09:54 2017
New Revision: 319394
URL: https://svnweb.freebsd.org/changeset/base/319394

Log:
  MFC r313030:
  
  Remove a duplicate debug statement.

Modified:
  stable/11/sys/netinet/sctp_timer.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/netinet/sctp_timer.c
==============================================================================
--- stable/11/sys/netinet/sctp_timer.c	Thu Jun  1 08:07:09 2017	(r319393)
+++ stable/11/sys/netinet/sctp_timer.c	Thu Jun  1 08:09:54 2017	(r319394)
@@ -719,13 +719,9 @@ start_again:
 	if (num_mk) {
 		SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n",
 		    tsnlast);
-		SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%ld\n",
-		    num_mk, (u_long)stcb->asoc.peers_rwnd);
-		SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n",
-		    tsnlast);
-		SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%d\n",
+		SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%u\n",
 		    num_mk,
-		    (int)stcb->asoc.peers_rwnd);
+		    stcb->asoc.peers_rwnd);
 	}
 #endif
 	*num_marked = num_mk;


More information about the svn-src-all mailing list