diff options
| author | 2020-11-27 12:36:44 +0000 | |
|---|---|---|
| committer | 2020-11-27 12:36:44 +0000 | |
| commit | 8315d5250d4d338e1880ea81f327645fe62d9bfb (patch) | |
| tree | 9f5cf59bc7127f431a15790ebfb461bbd80b00ba /src/configreader.cpp | |
| parent | Rename NickMax to MaxNick for consistency with the other limits. (diff) | |
Rename ChanMax to MaxChannel for consistency with the other limits.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 694910c5a..cefdab358 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -40,7 +40,7 @@ ServerLimits::ServerLimits(std::shared_ptr<ConfigTag> tag) : MaxLine(tag->getUInt("maxline", 512, 512)) , MaxNick(tag->getUInt("maxnick", 30, 1, MaxLine)) - , ChanMax(tag->getUInt("maxchan", 64, 1, MaxLine)) + , MaxChannel(tag->getUInt("maxchan", 64, 1, MaxLine)) , MaxModes(tag->getUInt("maxmodes", 20, 1)) , MaxUser(tag->getUInt("maxident", 10, 1)) , MaxQuit(tag->getUInt("maxquit", 255, 0, MaxLine)) |
