summaryrefslogtreecommitdiff
path: root/dhcpctl
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-01-27 22:40:55 +0000
committerTed Lemon <source@isc.org>2000-01-27 22:40:55 +0000
commit37e365b4908467386d1d9a6f1633bbc18d585c87 (patch)
tree3858e15b4511c608692123cdea78976ecd9f8962 /dhcpctl
parent14bb0a3fd90a84a88bcbae2733e5563653684dea (diff)
downloadisc-dhcp-37e365b4908467386d1d9a6f1633bbc18d585c87.tar.gz
- In reference count history, remember the address where the reference
is stored as well as the address of the thing referenced.
Diffstat (limited to 'dhcpctl')
-rw-r--r--dhcpctl/remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpctl/remote.c b/dhcpctl/remote.c
index 919f67a5..bf4a5b0d 100644
--- a/dhcpctl/remote.c
+++ b/dhcpctl/remote.c
@@ -46,7 +46,7 @@ dhcpctl_status dhcpctl_new_object (dhcpctl_handle *h,
memset (m, 0, sizeof *m);
m -> type = dhcpctl_remote_type;
m -> refcnt = 1;
- rc_register_mdl (m, m -> refcnt);
+ rc_register_mdl (&m, m, m -> refcnt);
g = (omapi_object_t *)0;
status = omapi_generic_new (&g, MDL);