svn commit: r339991 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Nov 1 11:41:41 UTC 2018


Author: tuexen
Date: Thu Nov  1 11:41:40 2018
New Revision: 339991
URL: https://svnweb.freebsd.org/changeset/base/339991

Log:
  Remove debug code which slipped in accidently.
  
  MFC after:		4 weeks
  X-MFC with:		r339989
  Sponsored by:		Netflix, Inc.

Modified:
  head/sys/netinet/tcp_syncache.c

Modified: head/sys/netinet/tcp_syncache.c
==============================================================================
--- head/sys/netinet/tcp_syncache.c	Thu Nov  1 11:37:19 2018	(r339990)
+++ head/sys/netinet/tcp_syncache.c	Thu Nov  1 11:41:40 2018	(r339991)
@@ -1744,7 +1744,6 @@ syncache_respond(struct syncache *sc, struct syncache_
 		th->th_seq = htonl(sc->sc_iss);
 	else
 		th->th_seq = htonl(sc->sc_iss + 1);
-printf("SEG.SEQ=0x%x, ISS=0x%x.\n", ntohl(th->th_seq), sc->sc_iss);
 	th->th_ack = htonl(sc->sc_irs + 1);
 	th->th_off = sizeof(struct tcphdr) >> 2;
 	th->th_x2 = 0;


More information about the svn-src-all mailing list