svn commit: r252958 - stable/9/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jul 7 15:55:01 UTC 2013


Author: tuexen
Date: Sun Jul  7 15:55:01 2013
New Revision: 252958
URL: http://svnweb.freebsd.org/changeset/base/252958

Log:
  MFC r244729:
  Minor cleanups of debug messages.

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

Modified: stable/9/sys/netinet/sctp_pcb.c
==============================================================================
--- stable/9/sys/netinet/sctp_pcb.c	Sun Jul  7 15:52:37 2013	(r252957)
+++ stable/9/sys/netinet/sctp_pcb.c	Sun Jul  7 15:55:01 2013	(r252958)
@@ -2694,9 +2694,9 @@ sctp_inpcb_bind(struct socket *so, struc
 	ip_inp = (struct inpcb *)so->so_pcb;
 #ifdef SCTP_DEBUG
 	if (addr) {
-		SCTPDBG(SCTP_DEBUG_PCB1, "Bind called port:%d\n",
+		SCTPDBG(SCTP_DEBUG_PCB1, "Bind called port: %d\n",
 		    ntohs(((struct sockaddr_in *)addr)->sin_port));
-		SCTPDBG(SCTP_DEBUG_PCB1, "Addr :");
+		SCTPDBG(SCTP_DEBUG_PCB1, "Addr: ");
 		SCTPDBG_ADDR(SCTP_DEBUG_PCB1, addr);
 	}
 #endif


More information about the svn-src-all mailing list