summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-02 23:49:37 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-02 23:49:37 +0000
commitd6c30d18bd0bad1fcca19e04207abf240b9c1d99 (patch)
tree77ea482ca64fde1d5ac8089f712e5c71bf4af942 /src/inspircd.cpp
parent5c7ee6799985bf33850ace506d082ce1e0d0af33 (diff)
Murder space indents.. now if I find out who did them, I'll murder them too ;(
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8799 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index b7e8ff5ae..450284d19 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -433,9 +433,9 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->Modes = new ModeParser(this);
/* set up fake client (uid is incorrect at this point,
- * until after config is read. we set up the user again
- * at that point
- */
+ * until after config is read. we set up the user again
+ * at that point
+ */
this->FakeClient = new User(this);
this->FakeClient->SetFd(FD_MAGIC_NUMBER);
@@ -478,42 +478,42 @@ InspIRCd::InspIRCd(int argc, char** argv)
/* We have all the files we can get, initiate pass 1 */
Config->Read(true, NULL, 1);
- this->AddServerName(Config->ServerName);
+ this->AddServerName(Config->ServerName);
- /*
- * Initialise SID/UID.
- * For an explanation as to exactly how this works, and why it works this way, see GetUID().
- * -- w00t
- */
- if (*Config->sid)
- {
+ /*
+ * Initialise SID/UID.
+ * For an explanation as to exactly how this works, and why it works this way, see GetUID().
+ * -- w00t
+ */
+ if (*Config->sid)
+ {
}
- else
- {
+ else
+ {
// Generate one
size_t sid = 0;
- for (const char* x = Config->ServerName; *x; ++x)
- sid = 5 * sid + *x;
- for (const char* y = Config->ServerDesc; *y; ++y)
- sid = 5 * sid + *y;
- sid = sid % 999;
+ for (const char* x = Config->ServerName; *x; ++x)
+ sid = 5 * sid + *x;
+ for (const char* y = Config->ServerDesc; *y; ++y)
+ sid = 5 * sid + *y;
+ sid = sid % 999;
Config->sid[0] = (char)(sid / 100 + 48);
Config->sid[1] = (char)(((sid / 10) % 10) + 48);
Config->sid[2] = (char)(sid % 10 + 48);
- }
+ }
- this->InitialiseUID();
+ this->InitialiseUID();
- /* set up fake client again this time with the correct uid */
- delete FakeClient;
- this->FakeClient = new User(this);
- this->FakeClient->SetFd(FD_MAGIC_NUMBER);
+ /* set up fake client again this time with the correct uid */
+ delete FakeClient;
+ this->FakeClient = new User(this);
+ this->FakeClient->SetFd(FD_MAGIC_NUMBER);
- // Get XLine to do it's thing.
- this->XLines->CheckELines();
- this->XLines->ApplyLines();
+ // Get XLine to do it's thing.
+ this->XLines->CheckELines();
+ this->XLines->ApplyLines();
CheckDie();