diff options
author | paul <paul> | 2003-06-15 03:28:29 +0200 |
---|---|---|
committer | paul <paul> | 2003-06-15 03:28:29 +0200 |
commit | b21b19c5785487f2ff4a6ce38f45c2e6c35f4363 (patch) | |
tree | c79f90ce7bd798b3f1391010153d9fdf7c7418f0 /ripd/rip_main.c | |
parent | 2003-06-12 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-b21b19c5785487f2ff4a6ce38f45c2e6c35f4363.tar.xz frr-b21b19c5785487f2ff4a6ce38f45c2e6c35f4363.zip |
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 'ripd/rip_main.c')
-rw-r--r-- | ripd/rip_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c index 9526d7ae9..84ea75c59 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -270,7 +270,7 @@ main (int argc, char **argv) zprivs_init (&ripd_privs); signal_init (); cmd_init (1); - vty_init (); + vty_init (master); memory_init (); keychain_init (); |