Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 May 2014 17:07:15 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r266052 - stable/9/sys/netinet
Message-ID:  <201405141707.s4EH7FEd038872@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Wed May 14 17:07:14 2014
New Revision: 266052
URL: http://svnweb.freebsd.org/changeset/base/266052

Log:
  MFC r257359:
  
  Terminate a debug output with a \n.

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

Modified: stable/9/sys/netinet/sctp_timer.c
==============================================================================
--- stable/9/sys/netinet/sctp_timer.c	Wed May 14 17:04:02 2014	(r266051)
+++ stable/9/sys/netinet/sctp_timer.c	Wed May 14 17:07:14 2014	(r266052)
@@ -552,7 +552,7 @@ start_again:
 	TAILQ_FOREACH_SAFE(chk, &stcb->asoc.sent_queue, sctp_next, nchk) {
 		if (SCTP_TSN_GE(stcb->asoc.last_acked_seq, chk->rec.data.TSN_seq)) {
 			/* Strange case our list got out of order? */
-			SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x",
+			SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x\n",
 			    (unsigned int)stcb->asoc.last_acked_seq, (unsigned int)chk->rec.data.TSN_seq);
 			recovery_cnt++;
 #ifdef INVARIANTS



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405141707.s4EH7FEd038872>