From b710a72254d8d761ad281b6c5628206183a547fb Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Fri, 2 Dec 2016 11:40:01 +0100 Subject: ss: Make sstate_namel local to scan_state() Signed-off-by: Phil Sutter --- misc/ss.c | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'misc') diff --git a/misc/ss.c b/misc/ss.c index a502fc5c..71113ca3 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 || -- cgit v1.2.3