summaryrefslogtreecommitdiffstats
path: root/lib/command.c
diff options
context:
space:
mode:
authorpaul <paul>2003-06-15 01:28:29 +0000
committerpaul <paul>2003-06-15 01:28:29 +0000
commit4f5d5436701d33b24c967ee545ac4946d3f517a4 (patch)
tree443092572237d8623a44a66a54620a268473292e /lib/command.c
parent1b4fb9f48c9afb705e5206de0dc5a7f20915f0ed (diff)
downloadquagga-4f5d5436701d33b24c967ee545ac4946d3f517a4.tar.bz2
quagga-4f5d5436701d33b24c967ee545ac4946d3f517a4.tar.xz
2003-06-15 Paul Jakma <paul@dishone.st>
* lib/vty.{c,h}: Remove vty layer depending on a 'master' global, pass the thread master in explicitly to vty_init. Sort out some header dependency problems with lib/command.h * zebra/: Move globals to struct zebrad. Update vty_init(). * (.*)/\1_main.c: update call to vty_init().
Diffstat (limited to 'lib/command.c')
-rw-r--r--lib/command.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/command.c b/lib/command.c
index 5d429338..ade413bb 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -20,11 +20,14 @@ Boston, MA 02111-1307, USA. */
#include <zebra.h>
-#include "command.h"
+
#include "memory.h"
#include "log.h"
#include "version.h"
#include "thread.h"
+#include "vector.h"
+#include "vty.h"
+#include "command.h"
/* Command vector which includes some level of command lists. Normally
each daemon maintains each own cmdvec. */