2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 05:47:45 +00:00

Fix up call to omapi_object_type_register.

This commit is contained in:
Ted Lemon 2000-10-10 22:53:43 +00:00
parent 975bd4642d
commit 84864dd8d3

View File

@ -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;