From 8ef79f42cadb0f6eefb033c62422d4c87f260cda Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
Date: Wed, 9 Nov 2011 01:14:05 +0200
Subject: [PATCH] http: Change an error log message to a warning
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Martin Storsjö <martin@martin.st>
---
 libavformat/http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/http.c b/libavformat/http.c
index 326ed0f7969..783ac6ab785 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);
-- 
GitLab