From 0b84f294904959a4be58db6fe0e89d71b2c1f401 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Wed, 16 Nov 2016 15:00:52 +0900 Subject: *: make DEFUN installations file-local This moves all install_element calls into the file where the DEFUNs are located. This fixes several small related bugs: - ospf6d wasn't installing a "no interface FOO" command - zebra had a useless copy of "interface FOO" - pimd's copy of "interface FOO" was not setting qobj_index, which means "description LINE" commands would fail with an error The next commit will do the actual act of making "foo_cmd" static. Signed-off-by: David Lamparter --- lib/workqueue.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/workqueue.c') diff --git a/lib/workqueue.c b/lib/workqueue.c index 549bb2360a..51017b34ea 100644 --- a/lib/workqueue.c +++ b/lib/workqueue.c @@ -222,6 +222,12 @@ DEFUN (show_work_queues, return CMD_SUCCESS; } +void +workqueue_cmd_init (void) +{ + install_element (VIEW_NODE, &show_work_queues_cmd); +} + /* 'plug' a queue: Stop it from being scheduled, * ie: prevent the queue from draining. */ -- cgit v1.2.3