Fix http authentication.
Add parenthesis around "MD5" in the request string as required by RFC 2069. Fixes ticket #3417. Reported and tested by Haarman Analyzed-by: Eugen-Andrei Gavriloaie
This commit is contained in:
parent
4f4cc43fd8
commit
3ba056017f
@ -225,7 +225,7 @@ static char *make_digest_auth(HTTPAuthState *state, const char *username,
|
||||
av_strlcatf(authstr, len, ",uri=\"%s\"", uri);
|
||||
av_strlcatf(authstr, len, ",response=\"%s\"", response);
|
||||
if (digest->algorithm[0])
|
||||
av_strlcatf(authstr, len, ",algorithm=%s", digest->algorithm);
|
||||
av_strlcatf(authstr, len, ",algorithm=\"%s\"", digest->algorithm);
|
||||
if (digest->opaque[0])
|
||||
av_strlcatf(authstr, len, ",opaque=\"%s\"", digest->opaque);
|
||||
if (digest->qop[0]) {
|
||||
|
Loading…
Reference in New Issue
Block a user