mirror of https://git.ffmpeg.org/ffmpeg.git
Merge remote-tracking branch 'qatar/master'
* qatar/master: rtmp: Pass the parameters to do_adobe_auth in the right order Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e7dd0365f2
|
@ -1690,7 +1690,7 @@ static int handle_connect_error(URLContext *s, const char *desc)
|
|||
}
|
||||
|
||||
if (!strcmp(authmod, "adobe")) {
|
||||
if ((ret = do_adobe_auth(rt, user, salt, challenge, opaque)) < 0)
|
||||
if ((ret = do_adobe_auth(rt, user, salt, opaque, challenge)) < 0)
|
||||
return ret;
|
||||
} else {
|
||||
if ((ret = do_llnw_auth(rt, user, nonce)) < 0)
|
||||
|
|
Loading…
Reference in New Issue