make the strings for tcptimers, tanames and prurequests const to silence
warnings.
This commit is contained in:
parent
ae8fed6b90
commit
30a4b05c04
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user