diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-10-04 22:41:52 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-10-04 22:41:52 +0200 |
commit | 42debbb43df2b9c54933a690f1a747c6899902a0 (patch) | |
tree | 4a24a4429ef6d27edae51c96e7bf9899c578a76d /lib/command.h | |
parent | all: Fix various syntax errors (diff) | |
download | frr-42debbb43df2b9c54933a690f1a747c6899902a0.tar.xz frr-42debbb43df2b9c54933a690f1a747c6899902a0.zip |
lib: Add logging for invalid commands
Ticket: CM-6855
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/command.h')
-rw-r--r-- | lib/command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/command.h b/lib/command.h index edbe69b71..e411e9c18 100644 --- a/lib/command.h +++ b/lib/command.h @@ -398,6 +398,7 @@ extern char *argv_concat (struct cmd_token **argv, int argc, int shift); extern vector cmd_make_strvec (const char *); extern void cmd_free_strvec (vector); +extern char *cmd_concat_strvec (vector); extern vector cmd_describe_command (vector, struct vty *, int *status); extern char **cmd_complete_command (vector, struct vty *, int *status); extern char **cmd_complete_command_lib (vector, struct vty *, int *status, int islib); |