summaryrefslogtreecommitdiff
path: root/ripngd/ripng_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'ripngd/ripng_main.c')
-rw-r--r--ripngd/ripng_main.c6
1 files changed, 4 insertions, 2 deletions
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);