1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 19:43:23 +02:00

Rename channel list to 'channels', for next commit.

This commit is contained in:
Bram Matthys
2019-10-05 08:47:24 +02:00
parent 858debdd01
commit c2d7da6e35
9 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -208,7 +208,7 @@ void unload_moddata_commit(ModDataInfo *md)
case MODDATATYPE_CHANNEL:
{
Channel *chptr;
for (chptr = channel; chptr; chptr=chptr->nextch)
for (chptr = channels; chptr; chptr=chptr->nextch)
{
if (md->free && moddata_channel(chptr, md).ptr)
md->free(&moddata_channel(chptr, md));
@@ -220,7 +220,7 @@ void unload_moddata_commit(ModDataInfo *md)
{
Channel *chptr;
Member *m;
for (chptr = channel; chptr; chptr=chptr->nextch)
for (chptr = channels; chptr; chptr=chptr->nextch)
{
for (m = chptr->members; m; m = m->next)
{