diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-08-24 12:42:56 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-08-24 12:42:56 +0000 |
commit | 429282e19c1961ee83dbdc6358bb2fd48665bf63 (patch) | |
tree | 27b9c1910ebbd44986264079bef80ad7cd90adbe /usr.sbin | |
parent | 356c5e0878707c555acdb6214efe2d70ca66654f (diff) |
Forgot to update printconf.c once again. foobar-AS is now foobar-as.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/printconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/bgpd/printconf.c b/usr.sbin/bgpd/printconf.c index f0642e7f056..50df68fba55 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.27 2004/08/13 14:03:20 claudio Exp $ */ +/* $OpenBSD: printconf.c,v 1.28 2004/08/24 12:42:55 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -305,11 +305,11 @@ print_rule(struct peer *peer_l, struct filter_rule *r) if (r->match.as.type == AS_ALL) printf("AS %u ", r->match.as.as); else if (r->match.as.type == AS_SOURCE) - printf("source-AS %u ", r->match.as.as); + printf("source-as %u ", r->match.as.as); else if (r->match.as.type == AS_TRANSIT) - printf("transit-AS %u ", r->match.as.as); + printf("transit-as %u ", r->match.as.as); else - printf("unfluffy-AS %u ", r->match.as.as); + printf("unfluffy-as %u ", r->match.as.as); } if (r->match.community.as != 0) { |