Fix empty SID validation and generation

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11851 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
danieldg 2009-10-12 13:09:14 +00:00
parent 7ba6c9f001
commit f741fa6e3c
2 changed files with 2 additions and 2 deletions

View File

@ -412,7 +412,7 @@ static bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem
const std::string& sid = data.GetValue();
if (!ServerInstance->IsSID(sid))
if (!sid.empty() && !ServerInstance->IsSID(sid))
{
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.");
}

View File

@ -568,7 +568,7 @@ InspIRCd::InspIRCd(int argc, char** argv) :
if (Config->sid.empty())
{
// Generate one
int sid = 0;
unsigned int sid = 0;
char sidstr[4];
for (const char* x = Config->ServerName.c_str(); *x; ++x)