summaryrefslogtreecommitdiff
path: root/ripd
diff options
context:
space:
mode:
Diffstat (limited to 'ripd')
-rw-r--r--ripd/ChangeLog5
-rw-r--r--ripd/rip_main.c5
2 files changed, 9 insertions, 1 deletions
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 <ajschorr@alumni.princeton.edu>
+
+ * rip_main.c: (sigint) Use zlog_notice for termination message.
+ (main) Add a startup announcement using zlog_notice.
+
2004-11-25 Hasso Tepper <hasso at quagga.net>
* 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);