diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-02-17 09:46:41 +0000 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-02-17 09:46:41 +0000 |
commit | 05fb7fd0421b395c089bb08dd0e0d78d3746b8cf (patch) | |
tree | c036b437f8931da984d24676dfa0f061b8863795 /bgpd/bgp_main.c | |
parent | 9856e17cf2495d1f7db16e866f16bc4a8447524d (diff) | |
download | quagga-05fb7fd0421b395c089bb08dd0e0d78d3746b8cf.tar.bz2 quagga-05fb7fd0421b395c089bb08dd0e0d78d3746b8cf.tar.xz |
Fixed bug in message skipping and added "pthread" to start message.
modified: bgpd/bgp_main.c
modified: bgpd/bgp_msg_read.c
deleted: bgpd/bgpd.cx -- bogus file
Diffstat (limited to 'bgpd/bgp_main.c')
-rw-r--r-- | bgpd/bgp_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c index 3c6d70aa..233d487a 100644 --- a/bgpd/bgp_main.c +++ b/bgpd/bgp_main.c @@ -589,7 +589,9 @@ main (int argc, char **argv) #ifdef QDEBUG zlog_notice("%s", debug_banner); #endif - zlog_notice ("BGPd %s starting: vty@%d, bgp@%s:%d", QUAGGA_VERSION, + zlog_notice ("BGPd %s%s starting: vty@%d, bgp@%s:%d", + QUAGGA_VERSION, + (qpthreads_enabled ? " pthreaded" : ""), vty_port, (bm->address ? bm->address : "<all>"), (int)bm->port); |