diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-06-23 07:10:06 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-06-23 07:10:06 +0000 |
commit | 47269e8cc20b7f584ccefadc404c8d6ff329e1f6 (patch) | |
tree | 0fce4e24d33290986ba414490de3328d80134530 /usr.sbin | |
parent | 1cc74585ad4c13f00d475c9c3466ffb1709d3fb2 (diff) |
kill that stupid AS path loop whining, that is normal
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/rde.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/rde.c b/usr.sbin/bgpd/rde.c index 1529b8dfb31..d953570ea01 100644 --- a/usr.sbin/bgpd/rde.c +++ b/usr.sbin/bgpd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.119 2004/06/22 23:17:01 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.120 2004/06/23 07:10:05 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -543,7 +543,6 @@ rde_update_dispatch(struct imsg *imsg) if (peer->conf.ebgp && !aspath_loopfree(attrs.aspath, conf->as)) { char *s; aspath_asprint(&s, attrs.aspath->data, attrs.aspath->hdr.len); - log_peer_warnx(&peer->conf, "AS path loop: %s", s); free(s); attr_free(&attrs); return (0); |