diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-04-01 12:21:18 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-04-01 12:21:18 +0200 |
commit | d93a43a57d37b7cc5506a823a081d21f515c3820 (patch) | |
tree | bc19c191a7603e7f6f5d97df685f4f20b553a4cc /proto/static | |
parent | eb3786e4ea46ce1abc4ca211346369b36dc17dd7 (diff) | |
download | bird-d93a43a57d37b7cc5506a823a081d21f515c3820.tar bird-d93a43a57d37b7cc5506a823a081d21f515c3820.zip |
Fix leaked debug message.
Diffstat (limited to 'proto/static')
-rw-r--r-- | proto/static/static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/static.c b/proto/static/static.c index 448a560..b953488 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) { |