svn commit: r244729 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Dec 27 08:06:59 UTC 2012


Author: tuexen
Date: Thu Dec 27 08:06:58 2012
New Revision: 244729
URL: http://svnweb.freebsd.org/changeset/base/244729

Log:
  Minor cleanups of debug messages.
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctp_pcb.c

Modified: head/sys/netinet/sctp_pcb.c
==============================================================================
--- head/sys/netinet/sctp_pcb.c	Thu Dec 27 08:02:58 2012	(r244728)
+++ head/sys/netinet/sctp_pcb.c	Thu Dec 27 08:06:58 2012	(r244729)
@@ -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