From 74a95f4e1312ef5a628da484b6cb39c417e2fceb Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Fri, 16 Jan 2015 03:14:35 +0000 Subject: Fix a blank error message when trying to load a module with a path. --- src/modmanager_dynamic.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/modmanager_dynamic.cpp b/src/modmanager_dynamic.cpp index 045b488b5..050f41c75 100644 --- a/src/modmanager_dynamic.cpp +++ b/src/modmanager_dynamic.cpp @@ -36,7 +36,10 @@ bool ModuleManager::Load(const std::string& filename, bool defer) { /* Don't allow people to specify paths for modules, it doesn't work as expected */ if (filename.find('/') != std::string::npos) + { + LastModuleError = "You can't load modules with a path: " + filename; return false; + } char modfile[MAXBUF]; snprintf(modfile,MAXBUF,"%s/%s",ServerInstance->Config->ModPath.c_str(),filename.c_str()); -- cgit v1.2.3