1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-27 14:46:37 +02:00

Fix bug in case where use was +o, now is not.

This commit is contained in:
Travis McArthur
2015-06-27 17:11:19 -07:00
parent fd5a79a16e
commit e280d2a49f
+5 -2
View File
@@ -299,8 +299,11 @@ OperPermission OperClass_evaluateACLPath(char* path, aClient *sptr, aClient *vic
ConfigItem_oper *ce_oper;
ConfigItem_operclass *ce_operClass;
OperClass *oc = NULL;
OperClassACLPath* operPath;
OperClassACL* acl;
OperClassACLPath *operPath;
OperClassACL *acl;
if (!IsOper(sptr))
return OPER_DENY;
ce_oper = Find_oper(sptr->user->operlogin);
if (!ce_oper)