From 12cc6af48c13e2f2d8bad1d10c5f5d52ec2b5ad9 Mon Sep 17 00:00:00 2001 From: prozacx Date: Mon, 13 Feb 2006 05:41:50 +0000 Subject: [PATCH] No longer need Server6 git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@652 726aef4b-f618-498e-8847-2d620e286838 --- znc.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/znc.cpp b/znc.cpp index 4a748af9..51fac35a 100644 --- a/znc.cpp +++ b/znc.cpp @@ -936,14 +936,6 @@ bool CZNC::ParseConfig(const CString& sConfig) { } else if (sName.CaseCmp("Allow") == 0) { pUser->AddAllowedHost(sValue); continue; - } else if (sName.CaseCmp("Server6") == 0) { - CUtils::PrintAction("Adding ipv6 Server [" + sValue + "]"); -#ifdef HAVE_IPV6 - CUtils::PrintStatus(pUser->AddServer(sValue, true)); -#else - CUtils::PrintStatus(false, "ZNC was not compiled with ipv6 support"); -#endif - continue; } else if (sName.CaseCmp("Server") == 0) { CUtils::PrintAction("Adding Server [" + sValue + "]"); CUtils::PrintStatus(pUser->AddServer(sValue));