summaryrefslogtreecommitdiff
path: root/omapip/support.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-10-01 21:42:42 +0000
committerTed Lemon <source@isc.org>2000-10-01 21:42:42 +0000
commitb85703e41b411a56f38da61396504237e1cbaf19 (patch)
treef800736d99adf7868c29028b1ef6544234971426 /omapip/support.c
parent84b0068537ad0873fb91071722d345a37d7f35cc (diff)
downloadisc-dhcp-b85703e41b411a56f38da61396504237e1cbaf19.tar.gz
Allow return result of ISC_R_UNCHANGED in omapi_update_object.
Diffstat (limited to 'omapip/support.c')
-rw-r--r--omapip/support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omapip/support.c b/omapip/support.c
index 05d82f02..3ddc6cbb 100644
--- a/omapip/support.c
+++ b/omapip/support.c
@@ -530,7 +530,7 @@ isc_result_t omapi_object_update (omapi_object_t *obj, omapi_object_t *id,
status = omapi_set_value (obj, id,
gsrc -> values [i] -> name,
gsrc -> values [i] -> value);
- if (status != ISC_R_SUCCESS)
+ if (status != ISC_R_SUCCESS && status != ISC_R_UNCHANGED)
return status;
}
if (handle)