]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
SAT>IP Server: rtsp/options - handle also '*' url
authorJaroslav Kysela <perex@perex.cz>
Sun, 5 Apr 2015 18:16:14 +0000 (20:16 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sun, 5 Apr 2015 18:16:14 +0000 (20:16 +0200)
src/satip/rtsp.c

index 2394ea51fb709aa58e09bbe33f2d99b5d3bcc4b0..bc5251859b10195cbc4332358adec1b4734bf3a8 100644 (file)
@@ -1083,7 +1083,7 @@ rtsp_process_options(http_connection_t *hc)
   session_t *rs;
   int found;
 
-  if ((u = rtsp_check_urlbase(u)) == NULL)
+  if (strcmp(u, "*") != 0 && (u = rtsp_check_urlbase(u)) == NULL)
     goto error;
 
   if (hc->hc_session) {