From: Phil Sutter Date: Fri, 2 Dec 2016 10:39:53 +0000 (+0100) Subject: ss: Make tmr_name local to tcp_timer_print() X-Git-Tag: v4.10.0~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86dfa1be4aeab3a0b77b1c2e3786d259a93dc26c;p=thirdparty%2Fiproute2.git ss: Make tmr_name local to tcp_timer_print() It's used only there, so no need to have it globally defined. Signed-off-by: Phil Sutter --- diff --git a/misc/ss.c b/misc/ss.c index 2e18be203..710601111 100644 --- a/misc/ss.c +++ b/misc/ss.c @@ -888,15 +888,6 @@ static void sock_addr_print(const char *addr, char *delim, const char *port, sock_addr_print_width(addr_width, addr, delim, serv_width, port, ifname); } -static const char *tmr_name[] = { - "off", - "on", - "keepalive", - "timewait", - "persist", - "unknown" -}; - static const char *print_ms_timer(int timeout) { static char buf[64]; @@ -2006,6 +1997,15 @@ static void tcp_stats_print(struct tcpstat *s) static void tcp_timer_print(struct tcpstat *s) { + static const char * const tmr_name[] = { + "off", + "on", + "keepalive", + "timewait", + "persist", + "unknown" + }; + if (s->timer) { if (s->timer > 4) s->timer = 5;