From 887c44a4f3d8219dc5b1c52b5dcde1f31d52b73d Mon Sep 17 00:00:00 2001 From: ajs Date: Fri, 3 Dec 2004 16:36:46 +0000 Subject: 2004-12-03 Andrew J. Schorr * bgp_main.c: (sigint) Use zlog_notice for termination message. (main) Use zlog_notice for startup announcement. * isis_main.c: (sigint,sigterm) Use zlog_notice for termination message. (terminate) This function should be static, not global. (main) Use zlog_notice for startup announcement, and remove ifdef ZEBRA_VERSION. * version.h.in: Remove declaration for pid_output_lock, this function is now static, not global. * pid_output.c: (pid_output_lock) This function should be static, not global. And remove "old umask" error message, since it was really an unimportant debug message, not an error. (pid_output) Need to declare static function pid_output_lock. * ospf6_main.c: (sigint,sigterm) Use zlog_notice for termination message. (main) Remove commented-out call to pid_output_lock (which should never be called other than from inside pid_output). And use zlog_notice to print the startup message, which now includes the vty port. * ospf_main.c: (sigint) Use zlog_notice for termination message. (main) Issue a startup announcement using zlog_notice. * rip_main.c: (sigint) Use zlog_notice for termination message. (main) Add a startup announcement using zlog_notice. * ripng_main.c: (sighup) Remove spurious terminating message. (sigint) Use zlog_notice for termination message. (main) Issue a startup announcement using zlog_notice. * main.c: (sigint) Use zlog_notice for termination message. (main) Add a startup announcement using zlog_notice. --- ripd/ChangeLog | 5 +++++ ripd/rip_main.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'ripd') diff --git a/ripd/ChangeLog b/ripd/ChangeLog index 3ca7d181..1c703dfa 100644 --- a/ripd/ChangeLog +++ b/ripd/ChangeLog @@ -1,3 +1,8 @@ +2004-12-03 Andrew J. Schorr + + * rip_main.c: (sigint) Use zlog_notice for termination message. + (main) Add a startup announcement using zlog_notice. + 2004-11-25 Hasso Tepper * rip_main.c: Make group to run as configurable. diff --git a/ripd/rip_main.c b/ripd/rip_main.c index d545a8ec..2b2939dd 100644 --- a/ripd/rip_main.c +++ b/ripd/rip_main.c @@ -144,7 +144,7 @@ sighup (void) void sigint (void) { - zlog (NULL, LOG_INFO, "Terminating on signal"); + zlog_notice ("Terminating on signal"); if (! retain_mode) rip_clean (); @@ -290,6 +290,9 @@ main (int argc, char **argv) /* Create VTY's socket */ vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH); + /* Print banner. */ + zlog_notice ("RIPd %s starting: vty@%d", QUAGGA_VERSION, vty_port); + /* Execute each thread. */ while (thread_fetch (master, &thread)) thread_call (&thread); -- cgit v1.2.1