summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-20 12:03:49 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-20 12:03:53 +0100
commite7dd0365f293231d8fffa828bd170695e695fe18 (patch)
tree928af06866f15381fe74c7f5040f411efb9f9312
parentf7fee8f700c27273fd0398d89c00ff7725bbf3fa (diff)
parenta5e6080a8d85122ba67bf6e5d1592b82a0397b5b (diff)
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>
-rw-r--r--libavformat/rtmpproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index 598122a229..d73e015d55 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -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)