From 63e8d42e3d570f7e5845c9d9f5e0204316009599 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sun, 10 Jul 2011 19:46:34 +0700 Subject: [PATCH] Don't fail to load if can't find fixfreenode. --- User.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/User.cpp b/User.cpp index e3d27e7c..6e4d4458 100644 --- a/User.cpp +++ b/User.cpp @@ -308,6 +308,12 @@ bool CUser::ParseConfig(CConfig* pConfig, CString& sError) { sModName = "disconkick"; } + // XXX Legacy crap, added in znc 0.099 + if (sModName == "fixfreenode") { + CUtils::PrintMessage("NOTICE: [fixfreenode] doesn't do anything useful anymore, ignoring it"); + continue; + } + CUtils::PrintAction("Loading Module [" + sModName + "]"); CString sModRet; CString sArgs = sValue.Token(1, true);