diff options
| author | 2014-02-08 23:01:44 +0100 | |
|---|---|---|
| committer | 2014-02-08 23:01:44 +0100 | |
| commit | efe77ba63b1e519fc4d563bd9b599277c4bd96e5 (patch) | |
| tree | 85eff52bd7735d19f3bac254ad9cce1fb863de43 /src/users.cpp | |
| parent | Move socketengine stats into a new class (diff) | |
| download | inspircd++-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.cpp | 2 |
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) |
