Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISC Open Source Projects
dhcp
Commits
3c4358e7
Commit
3c4358e7
authored
Oct 01, 1999
by
Ted Lemon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix the open lookup so that a result code of NOKEYS does not cause
creates to fail.
parent
3989a9e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
omapip/message.c
omapip/message.c
+3
-1
No files found.
omapip/message.c
View file @
3c4358e7
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment