aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-11-27 12:27:48 +0000
committerGravatar Sadie Powell2020-11-27 12:27:48 +0000
commit7187fc224b7fa3762a6b7cc42ddda170e35d0f8e (patch)
tree31ced81e38e5069bd03cdf7adf073068d96dd1d0 /src/configreader.cpp
parentCleanup CAPAB MODULES/MODLIST now we don't need 1202 compatibility. (diff)
Rename IdentMax to MaxUser for consistency with the other limits.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index f818d997d..4b7c5cd4e 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -42,7 +42,7 @@ ServerLimits::ServerLimits(std::shared_ptr<ConfigTag> tag)
, NickMax(tag->getUInt("maxnick", 30, 1, MaxLine))
, ChanMax(tag->getUInt("maxchan", 64, 1, MaxLine))
, MaxModes(tag->getUInt("maxmodes", 20, 1))
- , IdentMax(tag->getUInt("maxident", 10, 1))
+ , MaxUser(tag->getUInt("maxident", 10, 1))
, MaxQuit(tag->getUInt("maxquit", 255, 0, MaxLine))
, MaxTopic(tag->getUInt("maxtopic", 307, 1, MaxLine))
, MaxKick(tag->getUInt("maxkick", 255, 1, MaxLine))