]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
tipc: make cmd_find static
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 15 Nov 2018 22:36:30 +0000 (14:36 -0800)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 19 Nov 2018 19:42:44 +0000 (11:42 -0800)
Function only used in one file.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
tipc/cmdl.c
tipc/cmdl.h

index 4a2f4fd92f4816f52465ded2e65f642b3f36e8a7..f2f259cc5320730c40cb92860471ecb5a89731c8 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "cmdl.h"
 
-const struct cmd *find_cmd(const struct cmd *cmds, char *str)
+static const struct cmd *find_cmd(const struct cmd *cmds, char *str)
 {
        const struct cmd *c;
        const struct cmd *match = NULL;
index d37239f8569020e2b09cdb65b53c402b82a9a121..03db359956e65e8f066dd4325ba55ebe6a8b315b 100644 (file)
@@ -54,6 +54,4 @@ char *shift_cmdl(struct cmdl *cmdl);
 int run_cmd(struct nlmsghdr *nlh, const struct cmd *caller,
            const struct cmd *cmds, struct cmdl *cmdl, void *data);
 
-const struct cmd *find_cmd(const struct cmd *cmds, char *str);
-
 #endif