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
This commit is contained in:
cflakes
2010-05-29 20:11:48 +00:00
parent 0d16cbeb6a
commit 5a53fb4129

View File

@@ -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) {