diff options
author | Badlop <badlop@process-one.net> | 2010-12-13 11:08:53 +0100 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2010-12-13 11:14:39 +0100 |
commit | 6dd35923b0df19bda08f26b5a4d054afb0601590 (patch) | |
tree | e1dc8101ed50124f738dbda86fa11c63404c194c | |
parent | Option to reject S2S connection if untrusted certificate (EJAB-464) (diff) |
Fix warning about unused variables
-rw-r--r-- | src/web/ejabberd_http_bind.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/ejabberd_http_bind.erl b/src/web/ejabberd_http_bind.erl index a1d255cff..bc1d1d71d 100644 --- a/src/web/ejabberd_http_bind.erl +++ b/src/web/ejabberd_http_bind.erl @@ -937,8 +937,8 @@ prepare_outpacket_response(Sess, _Rid, OutPacket, false) -> end; %% Handle a new session along with its output payload prepare_outpacket_response(#http_bind{id=Sid, wait=Wait, - hold=Hold, to=To}=Sess, - Rid, OutPacket, true) -> + hold=Hold, to=To}=_Sess, + _Rid, OutPacket, true) -> case OutPacket of [{xmlstreamstart, _, OutAttrs} | Els] -> AuthID = xml:get_attr_s("id", OutAttrs), |