cli: static keyword tweak
authorZhao, Gang <gang.zhao.42@gmail.com>
Fri, 26 Feb 2016 09:18:38 +0000 (17:18 +0800)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 29 Feb 2016 20:06:28 +0000 (21:06 +0100)
commit6cd8912f102e721ea10ac13a1885fb9127cb4951
treec52875424f1a2973a05ebb8459f2c74898b750cb
parent5dfd3c16fa1cc9e288c41ef6e3e4c3bc63acf612
cli: static keyword tweak

Function ubus_cli_listen() is called only once, and function uloop_run()
and uloop_done() which need struct ubus_event_handler listener are
called within this function, so it's not needed to mark struct
ubus_event_handler listener as static. The same as pointer struct
ubus_context *ctx in main function.

Global struct commands is only used in this file, so it should be marked
static.

Signed-off-by: Zhao, Gang <gang.zhao.42@gmail.com>
cli.c