make the strings for tcptimers, tanames and prurequests const to silence

warnings.
This commit is contained in:
Alfred Perlstein 2002-08-16 09:07:59 +00:00
parent f341f36a88
commit e88894d39a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101975
3 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ struct tcp_debug {
#define TA_DROP 4
#ifdef TANAMES
static char *tanames[] =
static const char *tanames[] =
{ "input", "output", "user", "respond", "drop" };
#endif

View File

@ -123,7 +123,7 @@
#define TCPTV_DELACK (hz / PR_FASTHZ / 2) /* 100ms timeout */
#ifdef TCPTIMERS
static char *tcptimers[] =
static const char *tcptimers[] =
{ "REXMT", "PERSIST", "KEEP", "2MSL" };
#endif

View File

@ -171,7 +171,7 @@ struct protosw {
#define PRU_NREQ 22
#ifdef PRUREQUESTS
char *prurequests[] = {
const char *prurequests[] = {
"ATTACH", "DETACH", "BIND", "LISTEN",
"CONNECT", "ACCEPT", "DISCONNECT", "SHUTDOWN",
"RCVD", "SEND", "ABORT", "CONTROL",