diff options
author | paul <paul> | 2003-06-15 01:28:29 +0000 |
---|---|---|
committer | paul <paul> | 2003-06-15 01:28:29 +0000 |
commit | 4f5d5436701d33b24c967ee545ac4946d3f517a4 (patch) | |
tree | 443092572237d8623a44a66a54620a268473292e /ripngd | |
parent | 1b4fb9f48c9afb705e5206de0dc5a7f20915f0ed (diff) | |
download | quagga-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 'ripngd')
-rw-r--r-- | ripngd/ripng_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index bd1972a1..5fb04448 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -274,7 +274,7 @@ main (int argc, char **argv) zprivs_init (&ripngd_privs); signal_init (); cmd_init (1); - vty_init (); + vty_init (master); memory_init (); /* RIPngd inits. */ |