From 98b252507021cd63ac8e6fd92185325562eb3575 Mon Sep 17 00:00:00 2001 From: danieldg Date: Mon, 5 Oct 2009 14:06:03 +0000 Subject: [PATCH] Fix backwards HideWhoisServer check git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11798 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/users.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5