summaryrefslogtreecommitdiff
path: root/common/alloc.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-01-27 22:17:54 +0000
committerTed Lemon <source@isc.org>2000-01-27 22:17:54 +0000
commit00ceebd91905911a0f00412c52824ec8bdf97b0a (patch)
tree976358e1da6e85231397792b7523aa5a826479f6 /common/alloc.c
parent0dbb132f360568b795ea2a42800581f7728c6575 (diff)
downloadisc-dhcp-00ceebd91905911a0f00412c52824ec8bdf97b0a.tar.gz
Move malloc debug information out of option_state_dereferencers.
Diffstat (limited to 'common/alloc.c')
-rw-r--r--common/alloc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/alloc.c b/common/alloc.c
index a5ebb7f4..7f55eff9 100644
--- a/common/alloc.c
+++ b/common/alloc.c
@@ -22,7 +22,7 @@
#ifndef lint
static char copyright[] =
-"$Id: alloc.c,v 1.39 2000/01/26 17:20:16 mellon Exp $ Copyright (c) 1995, 1996, 1998 The Internet Software Consortium. All rights reserved.\n";
+"$Id: alloc.c,v 1.40 2000/01/27 22:14:36 mellon Exp $ Copyright (c) 1995, 1996, 1998 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -817,8 +817,7 @@ int option_state_dereference (ptr, file, line)
if (options -> universes [i] &&
universes [i] -> option_state_dereference)
((*(universes [i] -> option_state_dereference))
- (universes [i], options));
-
+ (universes [i], options, file, line));
dfree (options, file, line);
return 1;
}