2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-05 00:35:41 +00:00

Change delete to remove for compatibility with C++

This commit is contained in:
Ted Lemon
1999-09-16 04:53:38 +00:00
parent 0880c73c62
commit ccce1cc621
5 changed files with 16 additions and 16 deletions

View File

@@ -650,13 +650,13 @@ isc_result_t omapi_message_process (omapi_object_t *mo, omapi_object_t *po)
"no matching handle");
}
if (!object -> type -> delete)
if (!object -> type -> remove)
return omapi_protocol_send_status
(po, (omapi_object_t *)0,
ISC_R_NOTIMPLEMENTED, message -> id,
"no delete method for object");
"no remove method for object");
status = (*(object -> type -> delete)) (object,
status = (*(object -> type -> remove)) (object,
(omapi_object_t *)0);
omapi_object_dereference (&object,
"omapi_message_process");