fix bug that can cause recursive .forward files to fail
[unix-history] / usr / src / sys / netinet / tcp_debug.c
index 9c88bb4..444a853 100644 (file)
@@ -1,10 +1,10 @@
 /*
 /*
- * Copyright (c) 1982, 1986 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1982, 1986, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)tcp_debug.c 7.7 (Berkeley) %G%
+ *     @(#)tcp_debug.c 8.1 (Berkeley) %G%
  */
 
 #ifdef TCPDEBUG
  */
 
 #ifdef TCPDEBUG
 #define        TANAMES
 #endif
 
 #define        TANAMES
 #endif
 
-#include "param.h"
-#include "systm.h"
-#include "mbuf.h"
-#include "socket.h"
-#include "socketvar.h"
-#include "protosw.h"
-#include "errno.h"
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/mbuf.h>
+#include <sys/socket.h>
+#include <sys/socketvar.h>
+#include <sys/protosw.h>
+#include <sys/errno.h>
 
 
-#include "../net/route.h"
-#include "../net/if.h"
+#include <net/route.h>
+#include <net/if.h>
 
 
-#include "in.h"
-#include "in_systm.h"
-#include "ip.h"
-#include "in_pcb.h"
-#include "ip_var.h"
-#include "tcp.h"
-#include "tcp_fsm.h"
-#include "tcp_seq.h"
-#include "tcp_timer.h"
-#include "tcp_var.h"
-#include "tcpip.h"
-#include "tcp_debug.h"
+#include <netinet/in.h>
+#include <netinet/in_systm.h>
+#include <netinet/ip.h>
+#include <netinet/in_pcb.h>
+#include <netinet/ip_var.h>
+#include <netinet/tcp.h>
+#include <netinet/tcp_fsm.h>
+#include <netinet/tcp_seq.h>
+#include <netinet/tcp_timer.h>
+#include <netinet/tcp_var.h>
+#include <netinet/tcpip.h>
+#include <netinet/tcp_debug.h>
 
 #ifdef TCPDEBUG
 int    tcpconsdebug = 0;
 
 #ifdef TCPDEBUG
 int    tcpconsdebug = 0;
@@ -45,6 +45,7 @@ int   tcpconsdebug = 0;
 /*
  * Tcp debug routines
  */
 /*
  * Tcp debug routines
  */
+void
 tcp_trace(act, ostate, tp, ti, req)
        short act, ostate;
        struct tcpcb *tp;
 tcp_trace(act, ostate, tp, ti, req)
        short act, ostate;
        struct tcpcb *tp;