diff options
author | 2004-08-02 12:30:15 +0000 | |
---|---|---|
committer | 2004-08-02 12:30:15 +0000 | |
commit | 704eb0b2cac61920be993d5b60c8cb5b5144f0a3 (patch) | |
tree | 222b81cf56526dd4619a1a00fbfa4104ed7c7a79 | |
parent | Initialize timeouts correctly, match isa com; fixes panics in (diff) | |
download | wireguard-openbsd-704eb0b2cac61920be993d5b60c8cb5b5144f0a3.tar.xz wireguard-openbsd-704eb0b2cac61920be993d5b60c8cb5b5144f0a3.zip |
Forgot to add "anounce default-route" here. OK henning@
-rw-r--r-- | usr.sbin/bgpd/printconf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/printconf.c b/usr.sbin/bgpd/printconf.c index 61528ed7cfa..c868009a190 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.24 2004/07/05 16:54:53 henning Exp $ */ +/* $OpenBSD: printconf.c,v 1.25 2004/08/02 12:30:15 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -173,6 +173,8 @@ print_peer(struct peer_config *p) printf("%s\tannounce none\n", c); else if (p->announce_type == ANNOUNCE_ALL) printf("%s\tannounce all\n", c); + else if (p->announce_type == ANNOUNCE_DEFAULT_ROUTE) + printf("%s\tannounce default-route\n", c); else printf("%s\tannounce ???\n", c); |