From 4c4ceadaa1b111905ee9927c22eafcfc02f321f9 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 28 Oct 2021 14:44:25 +0200 Subject: [PATCH] command.c: Make aux_info_cb() static. It is only used in command.c. --- command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.c b/command.c index 0a76f68e..7b3d6faf 100644 --- a/command.c +++ b/command.c @@ -554,7 +554,7 @@ out: } EXPORT_SERVER_CMD_HANDLER(stat); -const char *aux_info_cb(unsigned cmd_num, bool verbose) +static const char *aux_info_cb(unsigned cmd_num, bool verbose) { static char result[80]; unsigned perms = server_command_perms[cmd_num]; -- 2.39.5