0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

10l let path behave like before the start/stop patch

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11664 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtognimp 2003-12-19 22:49:29 +00:00
parent fe0b80deee
commit 08654689df

View File

@ -623,9 +623,9 @@ rtsp_t *rtsp_connect(int fd, char* mrl, char *path, char *host, int port, char *
s->mrl = strdup(mrl);
s->host = strdup(host);
s->port = port;
s->path = strdup(path);
while (*path == '/')
path++;
s->path = strdup(path);
if ((s->param = strchr(s->path, '?')) != NULL)
s->param++;
//printf("path=%s\n", s->path);