diff options
author | ajs <ajs> | 2005-02-23 15:48:32 +0000 |
---|---|---|
committer | ajs <ajs> | 2005-02-23 15:48:32 +0000 |
commit | cdb6ee94bc2b9d1b66cfa1adcc5acaccbd648e0f (patch) | |
tree | e2ddd54488f20a3402ce94fcc4fb337fb883f61c /isisd | |
parent | 5c33349b3efff36a6acd36c6600b61e7cc2dbffc (diff) |
2005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* {vty.h,vty.c}: Remove vty_finish (duplicate of vty_reset).
* isis_main.c: (reload) Call vty_reset instead of vty_finish (both
functions were exactly the same).
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/ChangeLog | 5 | ||||
-rw-r--r-- | isisd/isis_main.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/isisd/ChangeLog b/isisd/ChangeLog index e34efd8c..c71f0568 100644 --- a/isisd/ChangeLog +++ b/isisd/ChangeLog @@ -1,3 +1,8 @@ +2005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * isis_main.c: (reload) Call vty_reset instead of vty_finish (both + functions were exactly the same). + 2005-01-18 Hasso Tepper <hasso at quagga.net> * *.c: Changed many functions to static. Some commented out diff --git a/isisd/isis_main.c b/isisd/isis_main.c index a2f028be..a4f80582 100644 --- a/isisd/isis_main.c +++ b/isisd/isis_main.c @@ -139,7 +139,7 @@ reload () { zlog_debug ("Reload"); /* FIXME: Clean up func call here */ - vty_finish (); + vty_reset (); execve (_progpath, _argv, _envp); } |