1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 18:53:13 +02:00

Fix/clean/clarify some stuff found by coverity scan

This commit is contained in:
Adam
2013-11-23 22:12:33 -05:00
parent 77e5744341
commit 90aa576fb3
6 changed files with 18 additions and 11 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ Anope::map<Server *> Servers::ByID;
std::set<Anope::string> Servers::Capab;
Server::Server(Server *up, const Anope::string &sname, unsigned shops, const Anope::string &desc, const Anope::string &ssid, bool jupe) : name(sname), hops(shops), description(desc), sid(ssid), uplink(up)
Server::Server(Server *up, const Anope::string &sname, unsigned shops, const Anope::string &desc, const Anope::string &ssid, bool jupe) : name(sname), hops(shops), description(desc), sid(ssid), uplink(up), users(0)
{
syncing = true;
juped = jupe;