? sys/netinet/ip_nat.c.riz Index: sys/netinet/tcp_debug.c =================================================================== RCS file: /cvsroot/src/sys/netinet/tcp_debug.c,v retrieving revision 1.21 diff -u -r1.21 tcp_debug.c --- sys/netinet/tcp_debug.c 3 Feb 2005 23:25:22 -0000 1.21 +++ sys/netinet/tcp_debug.c 2 Jun 2005 04:09:08 -0000 @@ -188,7 +188,7 @@ flags = th->th_flags; if (flags) { #ifndef lint - char *cp = "<"; + const char *cp = "<"; #define pf(f) { if (th->th_flags&__CONCAT(TH_,f)) { printf("%s%s", cp, "f"); cp = ","; } } pf(SYN); pf(ACK); pf(FIN); pf(RST); pf(PUSH); pf(URG); #endif Index: sys/netinet/tcp_debug.h =================================================================== RCS file: /cvsroot/src/sys/netinet/tcp_debug.h,v retrieving revision 1.14 diff -u -r1.14 tcp_debug.h --- sys/netinet/tcp_debug.h 7 Aug 2003 16:33:15 -0000 1.14 +++ sys/netinet/tcp_debug.h 2 Jun 2005 04:09:08 -0000 @@ -64,7 +64,7 @@ #define TA_DROP 4 #ifdef TANAMES -char *tanames[] = +const char *tanames[] = { "input", "output", "user", "respond", "drop" }; #endif Index: sys/netinet/tcp_timer.h =================================================================== RCS file: /cvsroot/src/sys/netinet/tcp_timer.h,v retrieving revision 1.21 diff -u -r1.21 tcp_timer.h --- sys/netinet/tcp_timer.h 4 Mar 2005 05:51:41 -0000 1.21 +++ sys/netinet/tcp_timer.h 2 Jun 2005 04:09:08 -0000 @@ -145,7 +145,7 @@ #define TCP_DELACK_TICKS (hz / PR_FASTHZ) /* time to delay ACK */ #ifdef TCPTIMERS -char *tcptimers[] = +const char *tcptimers[] = { "REXMT", "PERSIST", "KEEP", "2MSL" }; #endif