summaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 18:02:01 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 18:02:01 +0000
commitf83322c93800a528cf74811523ed90560092b715 (patch)
treeeb61cca00003f9a8f1a9f849ea1e3d7df75102df /src/configreader.cpp
parent02b2c0ac2b45b130c36c8e1df4da654dfb2c482b (diff)
Tidy up duplicate code, provide GetSID() method on ServerConfig which returns the SID always 3 digits long
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7959 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index c5f37a1e4..2ee99f1af 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -1716,6 +1716,14 @@ InspIRCd* ServerConfig::GetInstance()
return ServerInstance;
}
+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);
+ return OurSID;
+}
ValueItem::ValueItem(int value)
{