diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-11-19 14:43:58 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-11-19 14:43:58 +0000 |
commit | 8cb2f85096f6a3df1541d68236b6221cda8e2c9f (patch) | |
tree | 0a846986d7a668d20869bccda676d5eb70adcec8 /usr.sbin/bgpd/parse.y | |
parent | 7da959fda179fb9f25725c4c4f37a8571f52dfda (diff) |
For consistency reasons rename struct as_filter to struct filter_as.
OK henning@
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r-- | usr.sbin/bgpd/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 4de7725958a..ff2598518ed 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.146 2004/11/19 10:03:34 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.147 2004/11/19 14:43:57 claudio Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -74,7 +74,7 @@ struct filter_prefix_l { struct filter_as_l { struct filter_as_l *next; - struct as_filter a; + struct filter_as a; }; struct filter_match_l { @@ -1892,7 +1892,7 @@ expand_rule(struct filter_rule *rule, struct filter_peers_l *peer, if (a != NULL) memcpy(&r->match.as, &a->a, - sizeof(struct as_filter)); + sizeof(struct filter_as)); TAILQ_INSERT_TAIL(filter_l, r, entry); |