summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-11-09 01:14:05 +0200
committerMartin Storsjö <martin@martin.st>2011-11-10 10:51:57 +0200
commit8ef79f42cadb0f6eefb033c62422d4c87f260cda (patch)
treefbd210c1b9668ecd906ca90180ad362cce51aa5c /libavformat/http.c
parent7590061eb728f437a968989edf69fb7bf3fa67c3 (diff)
http: Change an error log message to a warning
Signed-off-by: Martin Storsjö <martin@martin.st>
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 326ed0f796..783ac6ab78 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -161,7 +161,7 @@ static int http_open(URLContext *h, const char *uri, int flags)
if (s->headers) {
int len = strlen(s->headers);
if (len < 2 || strcmp("\r\n", s->headers + len - 2))
- av_log(h, AV_LOG_ERROR, "No trailing CRLF found in HTTP header.\n");
+ av_log(h, AV_LOG_WARNING, "No trailing CRLF found in HTTP header.\n");
}
return http_open_cnx(h);