summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/bgpd.c
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2005-07-01 13:38:15 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2005-07-01 13:38:15 +0000
commit1fc6d097ccbc2200c7554deb5e8890754a008d96 (patch)
tree12be2a282a9441c564c98d6da19e8048e3607f6b /usr.sbin/bgpd/bgpd.c
parent363568c22a631871fa05861e45eede19bccf48d5 (diff)
Switch filter_sets form SIMPLEQ to TAILQ, needed for upcomming stuff.
Diffstat (limited to 'usr.sbin/bgpd/bgpd.c')
-rw-r--r--usr.sbin/bgpd/bgpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.c b/usr.sbin/bgpd/bgpd.c
index 88463c90ead..258a20b0dad 100644
--- a/usr.sbin/bgpd/bgpd.c
+++ b/usr.sbin/bgpd/bgpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.c,v 1.122 2005/06/29 09:43:25 claudio Exp $ */
+/* $OpenBSD: bgpd.c,v 1.123 2005/07/01 13:38:14 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -395,7 +395,7 @@ send_filterset(struct imsgbuf *i, struct filter_set_head *set, int id)
{
struct filter_set *s;
- SIMPLEQ_FOREACH(s, set, entry)
+ TAILQ_FOREACH(s, set, entry)
if (imsg_compose(i, IMSG_FILTER_SET, id, 0, -1, s,
sizeof(struct filter_set)) == -1)
return (-1);