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>
pull/13/head
Michael Niedermayer 12 years ago
commit e7dd0365f2
  1. 2
      libavformat/rtmpproto.c

@ -1690,7 +1690,7 @@ static int handle_connect_error(URLContext *s, const char *desc)
} }
if (!strcmp(authmod, "adobe")) { 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; return ret;
} else { } else {
if ((ret = do_llnw_auth(rt, user, nonce)) < 0) if ((ret = do_llnw_auth(rt, user, nonce)) < 0)

Loading…
Cancel
Save