summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp7
1 files changed, 4 insertions, 3 deletions
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 */