diff options
| author | 2009-10-05 14:06:03 +0000 | |
|---|---|---|
| committer | 2009-10-05 14:06:03 +0000 | |
| commit | 98b252507021cd63ac8e6fd92185325562eb3575 (patch) | |
| tree | f7d54fd8889f938b22445d2544c5806890f6e361 /src/users.cpp | |
| parent | Fix crash due to null address in DNS (diff) | |
| download | inspircd++-98b252507021cd63ac8e6fd92185325562eb3575.tar.gz inspircd++-98b252507021cd63ac8e6fd92185325562eb3575.tar.bz2 inspircd++-98b252507021cd63ac8e6fd92185325562eb3575.zip | |
Fix backwards HideWhoisServer check
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11798 e03df62e-2008-0410-955e-edbf42e46eb7
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 c3f1f3ae5..10ed754bb 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1779,7 +1779,7 @@ void FakeUser::SetFakeServer(std::string name) const std::string FakeUser::GetFullHost() { - if (ServerInstance->Config->HideWhoisServer.empty()) + if (!ServerInstance->Config->HideWhoisServer.empty()) return ServerInstance->Config->HideWhoisServer; return nick; } |
