From: Ted Lemon Date: Thu, 16 Sep 1999 04:56:10 +0000 (+0000) Subject: Change delete to remove for consistency with omapi changes. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83b89e9739d41bc1e197f1250425ea726f9d8ce5;p=thirdparty%2Fdhcp.git Change delete to remove for consistency with omapi changes. --- diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c index c9f44c36f..103724050 100644 --- a/dhcpctl/dhcpctl.c +++ b/dhcpctl/dhcpctl.c @@ -424,11 +424,12 @@ dhcpctl_status dhcpctl_object_refresh (dhcpctl_handle connection, return status; } -/* Requests a refresh on the object referenced by the handle (there +/* Requests the removal of the object referenced by the handle (there can't be any other work in progress on the handle). A - refresh means local parameters are updated from the server. */ + removal means that all searchable references to the object on the + server are deleted. */ -dhcpctl_status dhcpctl_object_delete (dhcpctl_handle connection, +dhcpctl_status dhcpctl_object_remove (dhcpctl_handle connection, dhcpctl_handle h) { isc_result_t status; diff --git a/dhcpctl/dhcpctl.h b/dhcpctl/dhcpctl.h index 96b1d8446..bd70edb69 100644 --- a/dhcpctl/dhcpctl.h +++ b/dhcpctl/dhcpctl.h @@ -60,7 +60,7 @@ dhcpctl_status dhcpctl_set_string_value (dhcpctl_handle, char *, char *); dhcpctl_status dhcpctl_set_boolean_value (dhcpctl_handle, int, char *); dhcpctl_status dhcpctl_object_update (dhcpctl_handle, dhcpctl_handle); dhcpctl_status dhcpctl_object_refresh (dhcpctl_handle, dhcpctl_handle); -dhcpctl_status dhcpctl_object_delete (dhcpctl_handle, dhcpctl_handle); +dhcpctl_status dhcpctl_object_remove (dhcpctl_handle, dhcpctl_handle); dhcpctl_status dhcpctl_set_callback (dhcpctl_handle, void *, void (*) (dhcpctl_handle,