Commit 8ef79f42 authored by Martin Storsjö's avatar Martin Storsjö

http: Change an error log message to a warning

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 7590061e
......@@ -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);
......
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