From 3c4358e7d2ad0bc5b0a69c2580da83293a6c4862 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Fri, 1 Oct 1999 03:23:03 +0000 Subject: [PATCH] - Fix the open lookup so that a result code of NOKEYS does not cause creates to fail. --- omapip/message.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/omapip/message.c b/omapip/message.c index 8139cbc80..e3c49f89b 100644 --- a/omapip/message.c +++ b/omapip/message.c @@ -485,7 +485,9 @@ isc_result_t omapi_message_process (omapi_object_t *mo, omapi_object_t *po) status = (*(type -> lookup)) (&object, (omapi_object_t *)0, message -> object); - if (status != ISC_R_SUCCESS && status != ISC_R_NOTFOUND) { + if (status != ISC_R_SUCCESS && + status != ISC_R_NOTFOUND && + status != ISC_R_NOKEYS) { return omapi_protocol_send_status (po, (omapi_object_t *)0, status, message -> id, -- GitLab