From: Ondrej Zajicek Date: Fri, 1 Apr 2011 10:21:18 +0000 (+0200) Subject: Fix leaked debug message. X-Git-Tag: v1.3.1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d93a43a57d37b7cc5506a823a081d21f515c3820;p=thirdparty%2Fbird.git Fix leaked debug message. --- diff --git a/proto/static/static.c b/proto/static/static.c index 448a560ad..b9534882b 100644 --- a/proto/static/static.c +++ b/proto/static/static.c @@ -237,7 +237,7 @@ static_neigh_notify(struct neighbor *n) struct proto *p = n->proto; struct static_route *r; - log(L_WARN "Static: neighbor notify for %I: iface %p\n", n->addr, n->iface); + DBG("Static: neighbor notify for %I: iface %p\n", n->addr, n->iface); for(r=n->data; r; r=r->chain) switch (r->dest) {