mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
rtspsrc: fix awkward if clause
This commit is contained in:
parent
8ceb58122e
commit
603c1d71a1
1 changed files with 1 additions and 1 deletions
|
@ -6961,7 +6961,7 @@ restart:
|
|||
/* could not be set but since the request returned OK, we assume it
|
||||
* was SDP, else check it. */
|
||||
if (respcont) {
|
||||
if (!g_ascii_strcasecmp (respcont, "application/sdp") == 0)
|
||||
if (g_ascii_strcasecmp (respcont, "application/sdp") != 0)
|
||||
goto wrong_content_type;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue