aboutsummaryrefslogtreecommitdiffstats
path: root/src/users.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-02-08 23:01:44 +0100
committerGravatar Attila Molnar2014-02-08 23:01:44 +0100
commitefe77ba63b1e519fc4d563bd9b599277c4bd96e5 (patch)
tree85eff52bd7735d19f3bac254ad9cce1fb863de43 /src/users.cpp
parentMove socketengine stats into a new class (diff)
downloadinspircd++-efe77ba63b1e519fc4d563bd9b599277c4bd96e5.tar.gz
inspircd++-efe77ba63b1e519fc4d563bd9b599277c4bd96e5.tar.bz2
inspircd++-efe77ba63b1e519fc4d563bd9b599277c4bd96e5.zip
Change all socketengine methods to be static
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 04d2114dc..eb91a9cb5 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -818,7 +818,7 @@ void User::Write(const char *text, ...)
void LocalUser::Write(const std::string& text)
{
- if (!ServerInstance->SE->BoundsCheckFd(&eh))
+ if (!SocketEngine::BoundsCheckFd(&eh))
return;
if (text.length() > ServerInstance->Config->Limits.MaxLine - 2)