diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-17 13:25:35 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-17 13:25:35 +0200 |
commit | 49d41a26c649aa3a098c4316262adcabc7bb840c (patch) | |
tree | 98287d4822e0bcc6986e9b9045b75af33bae37de /lib/workqueue.c | |
parent | isisd, vtysh: Fix isis routemaps (diff) | |
download | frr-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 'lib/workqueue.c')
-rw-r--r-- | lib/workqueue.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/workqueue.c b/lib/workqueue.c index d351beb12..772749403 100644 --- a/lib/workqueue.c +++ b/lib/workqueue.c @@ -178,11 +178,11 @@ work_queue_item_requeue (struct work_queue *wq, struct listnode *ln) LISTNODE_ATTACH (wq->items, ln); /* attach to end of list */ } -DEFUN(show_work_queues, - show_work_queues_cmd, - "show work-queues", - SHOW_STR - "Work Queue information\n") +DEFUN (show_work_queues, + show_work_queues_cmd, + "show work-queues", + SHOW_STR + "Work Queue information\n") { struct listnode *node; struct work_queue *wq; |