From: Ted Lemon Date: Thu, 16 Sep 1999 05:16:09 +0000 (+0000) Subject: Notice error return from 'updated' signal. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8119f73941a900fb716f68eeccd461ae1e11fca4;p=thirdparty%2Fdhcp.git Notice error return from 'updated' signal. --- diff --git a/omapip/support.c b/omapip/support.c index 9b4827884..ed472cf4b 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -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; }