Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DLNA-RUI
gupnp
Commits
481f399f
Commit
481f399f
authored
Feb 18, 2011
by
Zeeshan Ali (Khattak)
Browse files
Revert "Add missing quote in action response"
This reverts commit
1ff7bd81
.
parent
9787d014
Changes
1
Show whitespace changes
Inline
Side-by-side
libgupnp/gupnp-service.c
View file @
481f399f
...
...
@@ -797,16 +797,17 @@ new_action_response_str (const char *action_name,
g_string_append
(
str
,
"<u:"
);
g_string_append
(
str
,
action_name
);
g_string_append
(
str
,
"Response xmlns:u=
\"
"
);
g_string_append
(
str
,
"Response xmlns:u="
);
if
(
service_type
!=
NULL
)
{
g_string_append
(
str
,
service_type
);
g_string_append_c
(
str
,
'"'
);
}
else
{
g_warning
(
"No serviceType defined. Control may not work "
"correctly."
);
}
g_string_append
(
str
,
"
\"
>"
);
g_string_append
_c
(
str
,
'>'
);
return
str
;
}
...
...
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