Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP Server: rtsp/options - handle also '*' url
  • Loading branch information
perexg committed Apr 5, 2015
1 parent 2518d4f commit c7a8745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/satip/rtsp.c
Expand Up @@ -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) {
Expand Down

0 comments on commit c7a8745

Please sign in to comment.