From 84864dd8d32b1f50e171542a2b0a56f7c2ca1cf7 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Tue, 10 Oct 2000 22:53:43 +0000 Subject: [PATCH] Fix up call to omapi_object_type_register. --- dhcpctl/dhcpctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c index 60d6e065..70e368ab 100644 --- a/dhcpctl/dhcpctl.c +++ b/dhcpctl/dhcpctl.c @@ -68,7 +68,7 @@ dhcpctl_status dhcpctl_initialize () dhcpctl_callback_stuff_values, 0, 0, 0, 0, 0, 0, sizeof - (dhcpctl_callback_object_t)); + (dhcpctl_callback_object_t), 0); if (status != ISC_R_SUCCESS) return status; @@ -80,7 +80,8 @@ dhcpctl_status dhcpctl_initialize () dhcpctl_remote_signal_handler, dhcpctl_remote_stuff_values, 0, 0, 0, 0, 0, 0, - sizeof (dhcpctl_remote_object_t)); + sizeof (dhcpctl_remote_object_t), + 0); if (status != ISC_R_SUCCESS) return status;