summaryrefslogtreecommitdiff
path: root/lib/command.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-02-20 19:02:02 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-02-20 19:26:15 -0500
commit7f9adc7c67d0b7a64bdd575a7172df9692f5499b (patch)
treecccdb1e1f42e53f0ebcf9339cb67b74b759093cd /lib/command.h
parent70fd22bd03a1aae1c152fb7021f7acf8cd0a1af9 (diff)
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 <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/command.h')
-rw-r--r--lib/command.h3
1 files changed, 3 insertions, 0 deletions
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 */