summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2019-01-28 12:20:02 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2019-01-29 09:58:30 +0530
commit2e2b44baba575a33aa66796bc0a0f93070ab6c53 (patch)
treef2712805647d5bd51456513f603cf38d54591e26 /libavformat/http.c
parent286e58bb1f2d14bc2652430413987554e4e71668 (diff)
downloadffmpeg-2e2b44baba575a33aa66796bc0a0f93070ab6c53.tar.gz
avformat/http: clarify that ffmpeg will attempt to add missing CRLF
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index 240304f6e6..a0a0636cf2 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -541,7 +541,7 @@ static int http_open(URLContext *h, const char *uri, int flags,
int len = strlen(s->headers);
if (len < 2 || strcmp("\r\n", s->headers + len - 2)) {
av_log(h, AV_LOG_WARNING,
- "No trailing CRLF found in HTTP header.\n");
+ "No trailing CRLF found in HTTP header. Adding it.\n");
ret = av_reallocp(&s->headers, len + 3);
if (ret < 0)
return ret;