diff options
| author | 2021-03-05 02:32:35 +0000 | |
|---|---|---|
| committer | 2021-03-05 02:32:35 +0000 | |
| commit | 1e1cf527d255e4cf79d66fe8ac4c6945517d4c80 (patch) | |
| tree | b792d0f18afbbbafbd1b4d5d955f73ecfdf3ef4a /src/configreader.cpp | |
| parent | Refactor classbase/CullResult into Cullable/Cullable::Result. (diff) | |
| parent | Update copyright headers. (diff) | |
Merge branch 'insp3' into master.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 563e1fe08..dbce47666 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -15,6 +15,7 @@ * Copyright (C) 2007-2010 Robin Burchell <robin+git@viroteck.net> * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> * Copyright (C) 2006-2008 Craig Edwards <brain@inspircd.org> + * Copyright (C) 2006 Oliver Lupton <om@inspircd.org> * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -489,7 +490,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) ServerInstance->BindPorts(pl); if (!pl.empty()) { - std::cout << "Warning! Some of your listener" << (pl.size() == 1 ? "s" : "") << " failed to bind:" << std::endl; + errstr << "Warning! Some of your listener" << (pl.size() == 1 ? "s" : "") << " failed to bind:" << std::endl; for (FailedPortList::const_iterator iter = pl.begin(); iter != pl.end(); ++iter) { const FailedPort& fp = *iter; |
