diff options
| author | 2007-08-28 18:27:51 +0000 | |
|---|---|---|
| committer | 2007-08-28 18:27:51 +0000 | |
| commit | b2c7c614bd5a54f455d83d34d0ddb6d1f9fdaea1 (patch) | |
| tree | c4a1cddbca0cd8df2462e4e74d24f67bab38d648 /src/configreader.cpp | |
| parent | Convert yet more to ServerConfig::GetSID() - this is the last of the obvious ... (diff) | |
Fixes 1
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7964 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 2ee99f1af..3b3396f5c 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -1719,9 +1719,9 @@ InspIRCd* ServerConfig::GetInstance() std::string ServerConfig::GetSID() { std::string OurSID; - OurSID += (char)((Instance->Config->sid / 100) + 48); - OurSID += (char)((Instance->Config->sid / 10) % 10 + 48); - OurSID += (char)(Instance->Config->sid % 10 + 48); + OurSID += (char)((sid / 100) + 48); + OurSID += (char)((sid / 10) % 10 + 48); + OurSID += (char)(sid % 10 + 48); return OurSID; } |
