]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Minor fix, calling wrong free function.
authorShane Kerr <shane@isc.org>
Mon, 6 Nov 2006 18:13:31 +0000 (18:13 +0000)
committerShane Kerr <shane@isc.org>
Mon, 6 Nov 2006 18:13:31 +0000 (18:13 +0000)
See rt16446 for information.

common/tree.c

index d5bf7ded9e7d09d60b2ebaa64413b59c2b1b7b00..9965bf44a6399de5e8223ff1928d2c32deb18067 100644 (file)
@@ -34,7 +34,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: tree.c,v 1.109 2006/10/17 20:45:59 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium.  All rights reserved.\n";
+"$Id: tree.c,v 1.110 2006/11/06 18:13:31 shane Exp $ Copyright (c) 2004-2006 Internet Systems Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -773,7 +773,7 @@ int binding_value_dereference (struct binding_value **v,
                           file, line, bv -> type);
                return 0;
        }
-       dfree (bv, file, line);
+       free_binding_value(bv, file, line);
        return 1;
 }