1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 06:36:38 +02:00

Insane commit of doom: s/ \t/g

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1681 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2008-11-14 20:57:20 +00:00
parent 069409cd99
commit 6c55e0a529
213 changed files with 41185 additions and 41185 deletions
+17 -17
View File
@@ -34,27 +34,27 @@ BotInfo::BotInfo(const char *nnick, const char *nuser, const char *nhost, const
BotInfo::~BotInfo()
{
int i;
ChannelInfo *ci;
int i;
ChannelInfo *ci;
for (i = 0; i < 256; i++)
for (ci = chanlists[i]; ci; ci = ci->next)
if (ci->bi == this)
ci->bi = NULL;
for (i = 0; i < 256; i++)
for (ci = chanlists[i]; ci; ci = ci->next)
if (ci->bi == this)
ci->bi = NULL;
if (this->next)
this->next->prev = this->prev;
if (this->prev)
this->prev->next = this->next;
else
botlists[tolower(*this->nick)] = this->next;
if (this->next)
this->next->prev = this->prev;
if (this->prev)
this->prev->next = this->next;
else
botlists[tolower(*this->nick)] = this->next;
nbots--;
nbots--;
free(this->nick);
free(this->user);
free(this->host);
free(this->real);
free(this->nick);
free(this->user);
free(this->host);
free(this->real);
}