diff options
author | Robby <robby@chatbelgie.be> | 2017-01-17 05:03:25 +0100 |
---|---|---|
committer | Robby <robby@chatbelgie.be> | 2017-01-17 05:03:25 +0100 |
commit | 76ce8ece1a4803c98bfe9460f40bf8e0fbc409e6 (patch) | |
tree | 26e6da47f20de64ef76fe4afc459bbb7889bd417 /modules/database/db_old.cpp | |
parent | 464093d36e87f3df999145e42ed30fc0dfc55c52 (diff) |
Cleanup some excess whitespaces and tabs, and fix a few typos along the way.
Diffstat (limited to 'modules/database/db_old.cpp')
-rw-r--r-- | modules/database/db_old.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index dc1060abc..55b6bedc7 100644 --- a/modules/database/db_old.cpp +++ b/modules/database/db_old.cpp @@ -689,7 +689,7 @@ static void LoadVHosts() NickAlias *na = NickAlias::Find(nick); if (na == NULL) { - Log() << "Removing vhost for non-existent nick " << nick; + Log() << "Removing vhost for nonexistent nick " << nick; continue; } @@ -858,7 +858,7 @@ static void LoadChannels() if (in_use) { ChanAccess *access = NULL; - + if (xop) { if (provider_xop) @@ -1214,7 +1214,7 @@ static void LoadExceptions() dbFILE *f = open_db_read("OperServ", "exception.db", 9); if (f == NULL) return; - + int16_t num; READ(read_int16(&num, f)); for (int i = 0; i < num; ++i) @@ -1358,4 +1358,3 @@ class DBOld : public Module }; MODULE_INIT(DBOld) - |