From: Phil Sutter Date: Fri, 2 Dec 2016 10:40:01 +0000 (+0100) Subject: ss: Make sstate_namel local to scan_state() X-Git-Tag: v4.10.0~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b710a72254d8d761ad281b6c5628206183a547fb;p=thirdparty%2Fiproute2.git ss: Make sstate_namel local to scan_state() Signed-off-by: Phil Sutter --- diff --git a/misc/ss.c b/misc/ss.c index a502fc5ca..71113ca39 100644 --- a/misc/ss.c +++ b/misc/ss.c @@ -666,21 +666,6 @@ static const char *sctp_sstate_name[] = { [SCTP_STATE_SHUTDOWN_ACK_SENT] = "ACK_SENT", }; -static const char *sstate_namel[] = { - "UNKNOWN", - [SS_ESTABLISHED] = "established", - [SS_SYN_SENT] = "syn-sent", - [SS_SYN_RECV] = "syn-recv", - [SS_FIN_WAIT1] = "fin-wait-1", - [SS_FIN_WAIT2] = "fin-wait-2", - [SS_TIME_WAIT] = "time-wait", - [SS_CLOSE] = "unconnected", - [SS_CLOSE_WAIT] = "close-wait", - [SS_LAST_ACK] = "last-ack", - [SS_LISTEN] = "listening", - [SS_CLOSING] = "closing", -}; - struct sockstat { struct sockstat *next; unsigned int type; @@ -3931,6 +3916,20 @@ static void usage(void) static int scan_state(const char *state) { + static const char * const sstate_namel[] = { + "UNKNOWN", + [SS_ESTABLISHED] = "established", + [SS_SYN_SENT] = "syn-sent", + [SS_SYN_RECV] = "syn-recv", + [SS_FIN_WAIT1] = "fin-wait-1", + [SS_FIN_WAIT2] = "fin-wait-2", + [SS_TIME_WAIT] = "time-wait", + [SS_CLOSE] = "unconnected", + [SS_CLOSE_WAIT] = "close-wait", + [SS_LAST_ACK] = "last-ack", + [SS_LISTEN] = "listening", + [SS_CLOSING] = "closing", + }; int i; if (strcasecmp(state, "close") == 0 ||