aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-11-19 18:28:12 +0000
committerGravatar Sadie Powell2021-11-23 23:05:06 +0000
commitf776f9237193dedb3140468a25f38df11c79c6a4 (patch)
tree479c1aa73c5e2f8d4190ab311a73e14e4e807675 /src/configreader.cpp
parentSwitch mkdescriptions from YAML::Tiny to YAML. (diff)
Add the <connect:uniqueusername> option.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index a739bf5b5..5bc15bd41 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -294,6 +294,7 @@ void ServerConfig::CrossCheckConnectBlocks(ServerConfig* current)
me->maxconnwarn = tag->getBool("maxconnwarn", me->maxconnwarn);
me->limit = tag->getUInt("limit", me->limit);
me->resolvehostnames = tag->getBool("resolvehostnames", me->resolvehostnames);
+ me->uniqueusername = tag->getBool("uniqueusername", me->uniqueusername);
me->password = tag->getString("password", me->password);
me->passwordhash = tag->getString("hash", me->passwordhash);