diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-06-20 20:12:53 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-06-20 20:12:53 +0000 |
commit | 88a9ff480b63726e95ee31b8de5fb6b466c6871c (patch) | |
tree | d74432843a8bb67e4fe70cf765716eda757192b1 | |
parent | e7a36a91c8ab449dc7e70595f4880b472a2ff27b (diff) |
change the "nexthop 1.2.3.4 now valid: via 192.168.0.1" message to log_debug()
ok deraadt@ florian@ stsp@ phessler@
-rw-r--r-- | usr.sbin/bgpd/bgpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.c b/usr.sbin/bgpd/bgpd.c index 8e0031e7f22..297a8536950 100644 --- a/usr.sbin/bgpd/bgpd.c +++ b/usr.sbin/bgpd/bgpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.c,v 1.184 2016/02/02 17:51:11 sthen Exp $ */ +/* $OpenBSD: bgpd.c,v 1.185 2016/06/20 20:12:52 benno Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -771,7 +771,7 @@ send_nexthop_update(struct kroute_nexthop *msg) quit = 1; } - log_info("nexthop %s now %s%s%s", log_addr(&msg->nexthop), + log_debug("nexthop %s now %s%s%s", log_addr(&msg->nexthop), msg->valid ? "valid" : "invalid", msg->connected ? ": directly connected" : "", msg->gateway.aid ? gw : ""); |