diff options
author | Adam <Adam@anope.org> | 2013-09-08 21:53:06 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-09-08 21:53:06 -0400 |
commit | 339f41aebcad011d53da63b0d681a8353226a868 (patch) | |
tree | b4abd90375d05bc77322640236c149ec380b1866 /modules/pseudoclients/operserv.cpp | |
parent | 55e4ef9d3a5dc7e3b616e1369aac01ea1c76780d (diff) |
Fix allowing duplicate entries on the snline list
Have proto mods recognize cidr ranges as zlineable IPs
Remove operserv/global from global.conf because its dumb
Fix example config ~botserv/set example to work as expected
Diffstat (limited to 'modules/pseudoclients/operserv.cpp')
-rw-r--r-- | modules/pseudoclients/operserv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pseudoclients/operserv.cpp b/modules/pseudoclients/operserv.cpp index e10a8f39b..59ef7a067 100644 --- a/modules/pseudoclients/operserv.cpp +++ b/modules/pseudoclients/operserv.cpp @@ -134,7 +134,7 @@ class SNLineManager : public XLineManager { if (IRCD->CanSNLine) IRCD->SendSGLine(u, x); - else + else if (u) u->Kill(Config->GetClient("OperServ"), "SNLined: " + x->reason); } |