Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
dhcp
Commits
9564b4f0
Commit
9564b4f0
authored
Sep 06, 2016
by
Thomas Markwalder
Browse files
[master] Removed extraneous expression from omapi socket callback
Merges in rt42834.
parent
2b5c8201
Changes
2
Hide whitespace changes
Inline
Side-by-side
RELNOTES
View file @
9564b4f0
...
...
@@ -60,6 +60,12 @@ by Eric Young (eay@cryptsoft.com).
script
.
[
ISC
-
Bugs
#
39863
]
-
Removed
an
extraneous
expression
in
omapi
socket
callback
function
.
Prior
to
this
change
,
the
logic
was
techinically
incorrect
but
other
factors
ensured
the
outcome
itself
was
correct
.
This
change
was
made
primarily
for
code
clarity
.
[
ISC
-
Bugs
#
42834
]
Changes
since
4.3.0
(
bug
fixes
)
-
Tidy
up
several
small
tickets
.
...
...
omapip/dispatch.c
View file @
9564b4f0
...
...
@@ -134,12 +134,11 @@ omapi_iscsock_cb(isc_task_t *task,
* walk through the io states list, if our object is on there
* service it. if not ignore it.
*/
for
(
obj
=
omapi_io_states
.
next
;
(
obj
!=
NULL
)
&&
(
obj
->
next
!=
NULL
);
obj
=
obj
->
next
)
{
for
(
obj
=
omapi_io_states
.
next
;
obj
!=
NULL
;
obj
=
obj
->
next
)
{
if
(
obj
==
cbarg
)
break
;
}
if
(
obj
==
NULL
)
{
return
(
0
);
}
...
...
Write
Preview
Supports
Markdown
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