mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
cap: fix compile
This commit is contained in:
parent
ef3ab8e3a5
commit
3a48406b55
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ cap_req(struct Client *source_p, const char *arg)
|
|||
}
|
||||
else
|
||||
{
|
||||
if(cap->cap_required_serv && !(capadd & cap->cap_required_serv == cap->cap_required_serv || IsCapable(source_p, cap->required_serv)))
|
||||
if(cap->cap_required_serv && !((capadd & cap->cap_required_serv) == cap->cap_required_serv || IsCapable(source_p, cap->cap_required_serv)))
|
||||
{
|
||||
finished = 0;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue