From c7a87457cf4b9dd195d43c9a06e868e62d4f26eb Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sun, 5 Apr 2015 20:16:14 +0200 Subject: [PATCH] SAT>IP Server: rtsp/options - handle also '*' url --- src/satip/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c index 2394ea51..bc525185 100644 --- a/src/satip/rtsp.c +++ b/src/satip/rtsp.c @@ -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) {