diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_cgiirc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cgiirc.cpp b/src/modules/m_cgiirc.cpp index d67b09c39..de9cec8cd 100644 --- a/src/modules/m_cgiirc.cpp +++ b/src/modules/m_cgiirc.cpp @@ -403,7 +403,7 @@ class ModuleCgiIRC return; WebIRC::FlagMap::const_iterator cport = flags->find("remote-port"); - if (cport == flags->end()) + if (cport != flags->end()) { // If we can't parse the port then just give up. uint16_t port = ConvToNum<uint16_t>(cport->second); @@ -429,7 +429,7 @@ class ModuleCgiIRC } WebIRC::FlagMap::const_iterator sport = flags->find("local-port"); - if (sport == flags->end()) + if (sport != flags->end()) { // If we can't parse the port then just give up. uint16_t port = ConvToNum<uint16_t>(sport->second); |