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

Michael Tuexen tuexen at FreeBSD.org
Thu May 16 09:10:16 UTC 2019


Author: tuexen
Date: Thu May 16 09:10:14 2019
New Revision: 347667
URL: https://svnweb.freebsd.org/changeset/base/347667

Log:
  MFC r344726:
  
  Remove debug output.

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

Modified: stable/11/sys/netinet/sctp_usrreq.c
==============================================================================
--- stable/11/sys/netinet/sctp_usrreq.c	Thu May 16 09:07:11 2019	(r347666)
+++ stable/11/sys/netinet/sctp_usrreq.c	Thu May 16 09:10:14 2019	(r347667)
@@ -628,7 +628,6 @@ connected_type:
 	/* now what about control */
 	if (control) {
 		if (inp->control) {
-			SCTP_PRINTF("huh? control set?\n");
 			sctp_m_freem(inp->control);
 			inp->control = NULL;
 		}
@@ -3751,13 +3750,11 @@ sctp_setopt(struct socket *so, int optname, void *optv
 	uint32_t vrf_id;
 
 	if (optval == NULL) {
-		SCTP_PRINTF("optval is NULL\n");
 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL);
 		return (EINVAL);
 	}
 	inp = (struct sctp_inpcb *)so->so_pcb;
 	if (inp == NULL) {
-		SCTP_PRINTF("inp is NULL?\n");
 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL);
 		return (EINVAL);
 	}


More information about the svn-src-all mailing list