Commit 69ab683e authored by mru's avatar mru

ffserver: use av_stristr()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22252 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0947f763
......@@ -2442,7 +2442,7 @@ static int http_start_receive_data(HTTPContext *c)
c->buffer_ptr = c->buffer;
c->buffer_end = c->buffer + FFM_PACKET_SIZE;
c->stream->feed_opened = 1;
c->chunked_encoding = !!strcasestr(c->buffer, "Transfer-Encoding: chunked");
c->chunked_encoding = !!av_stristr(c->buffer, "Transfer-Encoding: chunked");
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment