From: Ted Lemon Date: Tue, 10 Oct 2000 22:53:43 +0000 (+0000) Subject: Fix up call to omapi_object_type_register. X-Git-Tag: V3-BETA-2-PATCH-7~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84864dd8d32b1f50e171542a2b0a56f7c2ca1cf7;p=thirdparty%2Fdhcp.git Fix up call to omapi_object_type_register. --- diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c index 60d6e065c..70e368ab8 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;