From 5a53fb41299b4afb72102840b030d2767e042087 Mon Sep 17 00:00:00 2001 From: cflakes Date: Sat, 29 May 2010 20:11:48 +0000 Subject: [PATCH] Fixed a source code comment. Patch by DGandalf. Thanks! git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2006 726aef4b-f618-498e-8847-2d620e286838 --- Modules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules.cpp b/Modules.cpp index 24b3ccb7..dc330c71 100644 --- a/Modules.cpp +++ b/Modules.cpp @@ -955,7 +955,7 @@ ModHandle CModules::OpenModule(const CString& sModule, const CString& sModPath, // RTLD_GLOBAL vs. RTLD_LOCAL: If perl is loaded with RTLD_LOCAL and later on // loads own modules (which it apparently does with RTLD_LAZY), we will die in a // name lookup since one of perl's symbols isn't found. That's worse - // than any theoretical issue with RTLD_LOCAL. + // than any theoretical issue with RTLD_GLOBAL. ModHandle p = dlopen((sModPath).c_str(), RTLD_NOW | RTLD_GLOBAL); if (!p) {