diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/configreader.cpp | 6 | ||||
-rw-r--r-- | src/inspircd.cpp | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 05171ea60..22d4e36dc 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -410,11 +410,11 @@ static bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem { ServerInstance->Logs->Log("CONFIG",DEFAULT,"Validating server id"); - const char *sid = data.GetString(); + const std::string& sid = data.GetValue(); - if (*sid && !ServerInstance->IsSID(sid)) + if (!ServerInstance->IsSID(sid)) { - throw CoreException(std::string(sid) + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter."); + throw CoreException(sid + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter."); } conf->sid = sid; diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 857009744..7e9d56734 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -568,15 +568,16 @@ InspIRCd::InspIRCd(int argc, char** argv) : if (Config->sid.empty()) { // Generate one - size_t sid = 0; + int sid = 0; + char sidstr[4]; for (const char* x = Config->ServerName.c_str(); *x; ++x) sid = 5 * sid + *x; for (const char* y = Config->ServerDesc.c_str(); *y; ++y) sid = 5 * sid + *y; - sid = sid % 999; + sprintf(sidstr, "%03d", sid % 1000); - Config->sid = ConvToStr(sid); + Config->sid = sidstr; } /* set up fake client again this time with the correct uid */ |