Patched using fix_no_modules_support.patch by psycho

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@768 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2006-09-16 18:26:36 +00:00
parent 994650e2a7
commit f8bb245c36
3 changed files with 7 additions and 0 deletions
+3
View File
@@ -59,7 +59,10 @@ CUser::~CUser() {
}
DelClients();
#ifdef _MODULES
DelModules();
#endif
CZNC::Get().GetManager().DelCronByAddr(m_pBackNickTimer);
CZNC::Get().GetManager().DelCronByAddr(m_pAwayNickTimer);
+3
View File
@@ -42,7 +42,10 @@ CZNC::~CZNC() {
m_Manager.Cleanup();
DeleteUsers();
#ifdef _MODULES
delete m_pModules;
#endif
}
CString CZNC::GetTag(bool bIncludeVersion) {
+1
View File
@@ -5,6 +5,7 @@
#include "main.h"
#include "FileUtils.h"
#include "Client.h"
#ifdef _MODULES
#include "Modules.h"
#endif