diff options
author | Martin Storsjö <martin@martin.st> | 2011-01-02 10:10:12 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-01-02 10:10:12 +0000 |
commit | 77223c5388ca7bfea2232afeb05b05fcc536de6f (patch) | |
tree | 984b384b1f8e192bf8c3dd3d28470cf660ec2056 /ffserver.c | |
parent | acc9ed14507c8a25c6ba633065311ceafb09e8e0 (diff) | |
download | ffmpeg-77223c5388ca7bfea2232afeb05b05fcc536de6f.tar.gz |
rtsp: Pass the method name to ff_rtsp_parse_line
Originally committed as revision 26191 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index fcc3359a41..64bcb9beb9 100644 --- a/ffserver.c +++ b/ffserver.c @@ -2895,7 +2895,7 @@ static int rtsp_parse_request(HTTPContext *c) len = sizeof(line) - 1; memcpy(line, p, len); line[len] = '\0'; - ff_rtsp_parse_line(header, line, NULL); + ff_rtsp_parse_line(header, line, NULL, NULL); p = p1 + 1; } |