24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-16 22:05:29 +02:00

Fix warnings about unused variables

This commit is contained in:
Badlop 2010-06-08 21:29:53 +02:00
parent aa176917fa
commit 526912756b

View File

@ -655,15 +655,15 @@ is_ptype_match(Item, PType) ->
%% TODO: Investigate this: sometimes Value has binaries, other times has strings
is_type_match(jid, Value, JIDtuple, Subscription, Groups) ->
is_type_match(jid, Value, JIDtuple, _Subscription, _Groups) ->
{User, Server, Resource} = Value,
JID = exmpp_jid:make(JIDtuple),
((User == undefined) orelse (User == []) orelse (User == exmpp_jid:prep_node(JID)))
andalso ((Server == undefined) orelse (Server == []) orelse (Server == exmpp_jid:prep_domain(JID)))
andalso ((Resource == undefined) orelse (Resource == []) orelse (Resource == exmpp_jid:prep_resource(JID)));
is_type_match(subscription, Value, JID, Subscription, Groups) ->
is_type_match(subscription, Value, _JID, Subscription, _Groups) ->
Value == Subscription;
is_type_match(group, Value, JID, Subscription, Groups) ->
is_type_match(group, Value, _JID, _Subscription, Groups) ->
lists:member(Value, Groups).