summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcpd/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/dhcpd/tree.c')
-rw-r--r--usr.sbin/dhcpd/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/tree.c b/usr.sbin/dhcpd/tree.c
index 3efde0858ea..e42e36bc3b6 100644
--- a/usr.sbin/dhcpd/tree.c
+++ b/usr.sbin/dhcpd/tree.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tree.c,v 1.12 2010/01/01 18:01:44 krw Exp $ */
+/* $OpenBSD: tree.c,v 1.13 2010/01/01 20:30:25 krw Exp $ */
/* Routines for manipulating parse trees... */
@@ -122,7 +122,7 @@ tree_concat(struct tree *left, struct tree *right)
dfree(right->data.const_val.data, "tree_concat");
left->data.const_val.data = buf;
left->data.const_val.len += right->data.const_val.len;
- free_tree(right, "tree_concat");
+ free(right);
return left;
}