summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2005-07-01 22:04:38 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2005-07-01 22:04:38 +0000
commit1d33ce68543623965a472a6bbd17973aa312a4cf (patch)
tree7f670fe55ddecb22d46236534eedb6123b843c74 /usr.sbin
parentc65e4e59327c4af294b4ce5fac63b2885a992e69 (diff)
More spaces
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/rde_filter.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/rde_filter.c b/usr.sbin/bgpd/rde_filter.c
index 4287b5d9607..b73b8edb6fd 100644
--- a/usr.sbin/bgpd/rde_filter.c
+++ b/usr.sbin/bgpd/rde_filter.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rde_filter.c,v 1.31 2005/07/01 13:38:14 claudio Exp $ */
+/* $OpenBSD: rde_filter.c,v 1.32 2005/07/01 22:04:37 claudio Exp $ */
/*
* Copyright (c) 2004 Claudio Jeker <claudio@openbsd.org>
@@ -303,11 +303,10 @@ filterset_free(struct filter_set_head *sh)
while ((s = TAILQ_FIRST(sh)) != NULL) {
TAILQ_REMOVE(sh, s, entry);
if (s->type == ACTION_RTLABEL_ID)
- rtlabel_unref(s->action.id);
+ rtlabel_unref(s->action.id);
else if (s->type == ACTION_PFTABLE_ID)
pftable_unref(s->action.id);
free(s);
}
-
}