summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r--usr.sbin/bgpd/parse.y6
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);