summaryrefslogtreecommitdiff
path: root/ripngd
diff options
context:
space:
mode:
Diffstat (limited to 'ripngd')
-rw-r--r--ripngd/ChangeLog6
-rw-r--r--ripngd/ripng_main.c6
2 files changed, 10 insertions, 2 deletions
diff --git a/ripngd/ChangeLog b/ripngd/ChangeLog
index 1abea564..840f4130 100644
--- a/ripngd/ChangeLog
+++ b/ripngd/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+ * ripng_main.c: (sighup) Remove spurious terminating message.
+ (sigint) Use zlog_notice for termination message.
+ (main) Issue a startup announcement using zlog_notice.
+
2004-11-25 Hasso Tepper <hasso at quagga.net>
* ripng_main.c: Make group to run as configurable.
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c
index df609a56..ac63abbb 100644
--- a/ripngd/ripng_main.c
+++ b/ripngd/ripng_main.c
@@ -133,7 +133,6 @@ sighup (void)
zlog_info ("SIGHUP received");
ripng_clean ();
ripng_reset ();
- zlog_info ("Terminating on signal");
/* Reload config file. */
vty_read_config (config_file, config_default);
@@ -147,7 +146,7 @@ sighup (void)
void
sigint (void)
{
- zlog_info ("Terminating on signal");
+ zlog_notice ("Terminating on signal");
if (! retain_mode)
ripng_clean ();
@@ -292,6 +291,9 @@ main (int argc, char **argv)
/* Process id file create. */
pid_output (pid_file);
+ /* Print banner. */
+ zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
+
/* Fetch next active thread. */
while (thread_fetch (master, &thread))
thread_call (&thread);