Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DLNA-RUI
gupnp
Commits
0ede68db
Commit
0ede68db
authored
Jan 24, 2011
by
Zeeshan Ali (Khattak)
Browse files
Correct logic to find service from list
This fixes the issue of wrongly ignoring new services.
parent
83725828
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgupnp/gupnp-control-point.c
View file @
0ede68db
...
...
@@ -213,7 +213,7 @@ find_service_node (GUPnPControlPoint *control_point,
info
=
GUPNP_SERVICE_INFO
(
l
->
data
);
if
((
strcmp
(
gupnp_service_info_get_udn
(
info
),
udn
)
==
0
)
||
if
((
strcmp
(
gupnp_service_info_get_udn
(
info
),
udn
)
==
0
)
&&
(
strcmp
(
gupnp_service_info_get_service_type
(
info
),
service_type
)
==
0
))
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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