aboutsummaryrefslogtreecommitdiff
path: root/src/modulemanager.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-04-07 01:15:40 +0100
committerGravatar Sadie Powell2026-04-07 01:15:40 +0100
commit6181df8cb4133b30097d5d5dd785f69220552a03 (patch)
treeacffaac39f6b874d4ec518254662cf6d734a2a81 /src/modulemanager.cpp
parentAlso define NDEBUG for build type 3. (diff)
Rename DLL_EXTENSION to INSPIRCD_MODULE_EXT.
This will be in config.h when we switch to CMake so I'm renaming it now to reduce the diff size of the CMake commit.
Diffstat (limited to 'src/modulemanager.cpp')
-rw-r--r--src/modulemanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modulemanager.cpp b/src/modulemanager.cpp
index 6c96ca802..1d659d469 100644
--- a/src/modulemanager.cpp
+++ b/src/modulemanager.cpp
@@ -138,7 +138,7 @@ void ModuleManager::LoadCoreModules(std::map<std::string, Service::List>& servic
continue;
const std::string name = entry.path().filename().string();
- if (!InspIRCd::Match(name, "core_*" DLL_EXTENSION))
+ if (!InspIRCd::Match(name, "core_*" INSPIRCD_MODULE_EXT))
continue;
fmt::print(".");