summaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index b8719fcd8..b0f2d6872 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -772,7 +772,8 @@ void ServerConfig::Read(bool bail, userrec* user)
if (!bail)
{
int found_ports;
- ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports);
+ FailedPortList pl;
+ ServerInstance->stats->BoundPortCount = ServerInstance->BindPorts(false, found_ports, pl);
if (!removed_modules.empty())
for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)