diff options
| author | 2023-01-24 23:41:50 +0000 | |
|---|---|---|
| committer | 2023-01-25 00:39:27 +0000 | |
| commit | af8effe4f0876d6fa934806745712f679bd36278 (patch) | |
| tree | b0d6de94d60dc5e116faa5e14b6029fb1c527886 /src/modules/m_ircv3_sts.cpp | |
| parent | Fix using (unsigned) long instead of (s)size_t. (diff) | |
Replace getInt/getUInt/getFloat with type safe templated functions.
Diffstat (limited to 'src/modules/m_ircv3_sts.cpp')
| -rw-r--r-- | src/modules/m_ircv3_sts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3_sts.cpp b/src/modules/m_ircv3_sts.cpp index 24874ef97..51099466e 100644 --- a/src/modules/m_ircv3_sts.cpp +++ b/src/modules/m_ircv3_sts.cpp @@ -181,7 +181,7 @@ public: if (host.empty()) throw ModuleException(this, "<sts:host> must contain a hostname, at " + tag->source.str()); - in_port_t port = static_cast<in_port_t>(tag->getUInt("port", 6697, 1, 65535)); + in_port_t port = tag->getNum<in_port_t>("port", 6697, 1); if (!HasValidSSLPort(port)) throw ModuleException(this, "<sts:port> must be a TLS port, at " + tag->source.str()); |
