summaryrefslogtreecommitdiffstats
path: root/isisd/isis_vty.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-09-17 13:25:35 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-09-17 13:25:35 +0200
commit49d41a26c649aa3a098c4316262adcabc7bb840c (patch)
tree98287d4822e0bcc6986e9b9045b75af33bae37de /isisd/isis_vty.c
parentisisd, vtysh: Fix isis routemaps (diff)
downloadfrr-49d41a26c649aa3a098c4316262adcabc7bb840c.tar.xz
frr-49d41a26c649aa3a098c4316262adcabc7bb840c.zip
isisd, lib, vtysh: Allow extract.pl to fully work
The regular expression for finding DEFUN/ALIAS in extract.pl looks for "DEFUN (" or "ALIAS (" if the *.c file does not have this then it will just silently ignore the cli. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'isisd/isis_vty.c')
-rw-r--r--isisd/isis_vty.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/isisd/isis_vty.c b/isisd/isis_vty.c
index 4148eb55b..53c635ea6 100644
--- a/isisd/isis_vty.c
+++ b/isisd/isis_vty.c
@@ -1566,21 +1566,21 @@ DEFUN (area_lsp_mtu,
return area_lsp_mtu_set(vty, lsp_mtu);
}
-DEFUN(no_area_lsp_mtu,
- no_area_lsp_mtu_cmd,
- "no lsp-mtu",
- NO_STR
- "Configure the maximum size of generated LSPs\n")
+DEFUN (no_area_lsp_mtu,
+ no_area_lsp_mtu_cmd,
+ "no lsp-mtu",
+ NO_STR
+ "Configure the maximum size of generated LSPs\n")
{
return area_lsp_mtu_set(vty, DEFAULT_LSP_MTU);
}
-ALIAS(no_area_lsp_mtu,
- no_area_lsp_mtu_arg_cmd,
- "no lsp-mtu <128-4352>",
- NO_STR
- "Configure the maximum size of generated LSPs\n"
- "Maximum size of generated LSPs\n");
+ALIAS (no_area_lsp_mtu,
+ no_area_lsp_mtu_arg_cmd,
+ "no lsp-mtu <128-4352>",
+ NO_STR
+ "Configure the maximum size of generated LSPs\n"
+ "Maximum size of generated LSPs\n");
DEFUN (is_type,
is_type_cmd,