From 7f9adc7c67d0b7a64bdd575a7172df9692f5499b Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 20 Feb 2019 19:02:02 -0500 Subject: [PATCH] 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 --- lib/command.h | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- 2.39.5