rtspsrc: fix awkward if clause
authorTim-Philipp Müller <tim@centricular.com>
Sun, 8 Feb 2015 12:03:10 +0000 (12:03 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 8 Feb 2015 12:03:10 +0000 (12:03 +0000)
gst/rtsp/gstrtspsrc.c

index 24d9b81..a1a8f0f 100644 (file)
@@ -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;
   }