]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Notice error return from 'updated' signal.
authorTed Lemon <source@isc.org>
Thu, 16 Sep 1999 05:16:09 +0000 (05:16 +0000)
committerTed Lemon <source@isc.org>
Thu, 16 Sep 1999 05:16:09 +0000 (05:16 +0000)
omapip/support.c

index 9b4827884e88e1048425efaefa34b6a6325ae7b3..ed472cf4be9f7d1a71d057d29c4ea68036fb95c8 100644 (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;
 }