mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Fix warnings about unused variables
This commit is contained in:
parent
aa176917fa
commit
526912756b
@ -655,15 +655,15 @@ is_ptype_match(Item, PType) ->
|
|||||||
|
|
||||||
|
|
||||||
%% TODO: Investigate this: sometimes Value has binaries, other times has strings
|
%% 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,
|
{User, Server, Resource} = Value,
|
||||||
JID = exmpp_jid:make(JIDtuple),
|
JID = exmpp_jid:make(JIDtuple),
|
||||||
((User == undefined) orelse (User == []) orelse (User == exmpp_jid:prep_node(JID)))
|
((User == undefined) orelse (User == []) orelse (User == exmpp_jid:prep_node(JID)))
|
||||||
andalso ((Server == undefined) orelse (Server == []) orelse (Server == exmpp_jid:prep_domain(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)));
|
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;
|
Value == Subscription;
|
||||||
is_type_match(group, Value, JID, Subscription, Groups) ->
|
is_type_match(group, Value, _JID, _Subscription, Groups) ->
|
||||||
lists:member(Value, Groups).
|
lists:member(Value, Groups).
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user