diff options
Diffstat (limited to 'ripd/rip_main.c')
-rw-r--r-- | ripd/rip_main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c index d545a8eca..2b2939dd5 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); |