From: Donald Sharp Date: Thu, 21 Feb 2019 00:02:02 +0000 (-0500) Subject: lib: Allow DEFPY_HIDDEN to exist in vtysh X-Git-Tag: 7.1_pulled~224^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=7f9adc7c67d0b7a64bdd575a7172df9692f5499b;p=matthieu%2Ffrr.git lib: Allow DEFPY_HIDDEN to exist in vtysh The DEFPY_HIDDEN commands were not being picked up into vtysh. Fix this issue. Signed-off-by: Donald Sharp --- diff --git a/lib/command.h b/lib/command.h index 0faaa426ac..a5f9616dbf 100644 --- a/lib/command.h +++ b/lib/command.h @@ -318,6 +318,9 @@ struct cmd_node { #define DEFPY_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \ DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) + +#define DEFPY_HIDDEN(funcname, cmdname, cmdstr, helpstr) \ + DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) #endif /* VTYSH_EXTRACT_PL */ /* Some macroes */