summaryrefslogtreecommitdiff
path: root/src/config.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-03-13 15:25:29 -0500
committerAdam <Adam@anope.org>2013-03-14 09:03:48 -0500
commitb95b8f0aae8b0c836fc00fa8b723ea09b4e52295 (patch)
tree954490a6d3a4ba296e629eaf2b1552caacb8e4e7 /src/config.cpp
parent1ff7a7c1f1cee2dfe26a0a72026176202e2e4e6a (diff)
Fix setting BSDefFlags from the config
Diffstat (limited to 'src/config.cpp')
-rw-r--r--src/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp
index fde9c90ad..1c6b2a0ce 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -96,7 +96,7 @@ ServerConfig::ServerConfig()
spacesepstream options(BSDefaults);
Anope::string option;
while (options.GetToken(option))
- this->BSDefFlags.insert(option.upper());
+ this->BSDefFlags.insert("BS_" + option.upper());
}
/* Ulines */