Author: tuexen
Date: Sat May  4 11:11:03 2019
New Revision: 347104
URL: https://svnweb.freebsd.org/changeset/base/347104

Log:
  MFC r344726:
  Remove debug output.

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

Modified: stable/12/sys/netinet/sctp_usrreq.c
==============================================================================
--- stable/12/sys/netinet/sctp_usrreq.c Sat May  4 11:07:35 2019        
(r347103)
+++ stable/12/sys/netinet/sctp_usrreq.c Sat May  4 11:11:03 2019        
(r347104)
@@ -630,7 +630,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);
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to