diff options
Diffstat (limited to 'bgpd')
-rw-r--r-- | bgpd/ChangeLog | 5 | ||||
-rw-r--r-- | bgpd/bgp_main.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog index 64b229cf..c76627b6 100644 --- a/bgpd/ChangeLog +++ b/bgpd/ChangeLog @@ -1,3 +1,8 @@ +2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * bgp_main.c: (sigint) Use zlog_notice for termination message. + (main) Use zlog_notice for startup announcement. + 2004-11-25 Hasso Tepper <hasso at quagga.net> * bgp_main.c: Make group to run as configurable. diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c index 1d6710fd..ee498b0c 100644 --- a/bgpd/bgp_main.c +++ b/bgpd/bgp_main.c @@ -173,7 +173,7 @@ sighup (void) void sigint (void) { - zlog (NULL, LOG_INFO, "Terminating on signal"); + zlog_notice ("Terminating on signal"); if (! retain_mode) bgp_terminate (); @@ -305,8 +305,8 @@ main (int argc, char **argv) vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH); /* Print banner. */ - zlog_info ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION, - vty_port, bm->port); + zlog_notice ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION, + vty_port, bm->port); /* Start finite state machine, here we go! */ while (thread_fetch (master, &thread)) |