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

Notice error return from 'updated' signal.

This commit is contained in:
Ted Lemon
1999-09-16 05:16:09 +00:00
parent 92ce3f81d1
commit 8119f73941

View File

@@ -452,7 +452,9 @@ isc_result_t omapi_object_update (omapi_object_t *obj, omapi_object_t *id,
}
if (handle)
omapi_set_int_value (obj, id, "remote-handle", handle);
omapi_signal (obj, "updated");
status = omapi_signal (obj, "updated");
if (status != ISC_R_NOTFOUND)
return status;
return ISC_R_SUCCESS;
}