diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-29 15:35:42 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-06-29 15:35:42 +0000 |
commit | 9fc81392b32c9fb6a4c9b6215e2c4987b174ce8a (patch) | |
tree | c8434d1fe3e7e60baa60fe81b20897c48aeeaa90 /src | |
parent | 63a3d49a01ac04a6b0382440a479cb1a746222d9 (diff) |
Forward port of CullList and my bragging rights
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4087 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/cull_list.cpp | 2 | ||||
-rw-r--r-- | src/inspircd.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp index 00c916199..1acdd4517 100644 --- a/src/cull_list.cpp +++ b/src/cull_list.cpp @@ -128,7 +128,7 @@ void CullList::AddItem(userrec* user, const char* reason) int CullList::Apply() { - int n = 0; + int n = list.size(); while (list.size()) { std::vector<CullItem>::iterator a = list.begin(); diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 80c80a1cf..34ce45e14 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -145,7 +145,7 @@ void Start() { printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__); printf("(C) ChatSpike Development team.\033[0m\n\n"); - printf("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om\033[0m\n"); + printf("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special\033[0m\n"); printf("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n"); printf("Name concept:\t\t\033[1;32mLord_Zathras\033[0m\n\n"); } |