summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/parse.y
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2006-04-26 17:13:15 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2006-04-26 17:13:15 +0000
commit07137833ec5781973940f1475f1928b5514b8b88 (patch)
tree141a6534ac5247c4654ff4c51bc20a535055e658 /usr.sbin/bgpd/parse.y
parent9726bb597378e1a9d7b4c54f89586344078445ce (diff)
Remove filterset_names from bgpd.h and replace it with a function because
the table was already out of sync now. OK henning@
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r--usr.sbin/bgpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y
index 6d6609e16c6..28aa3386aec 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.187 2006/04/18 19:26:55 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.188 2006/04/26 17:13:14 claudio Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -2432,7 +2432,7 @@ merge_filterset(struct filter_set_head *sh, struct filter_set *s)
yyerror("community is already set");
else
yyerror("redefining set parameter %s",
- filterset_names[s->type]);
+ filterset_name(s->type));
return (-1);
}
}