Skip to content
Snippets Groups Projects
Commit 8ef79f42 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

http: Change an error log message to a warning

parent 7590061e
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ static int http_open(URLContext *h, const char *uri, int flags) ...@@ -161,7 +161,7 @@ static int http_open(URLContext *h, const char *uri, int flags)
if (s->headers) { if (s->headers) {
int len = strlen(s->headers); int len = strlen(s->headers);
if (len < 2 || strcmp("\r\n", s->headers + len - 2)) 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); return http_open_cnx(h);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment