X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Flists.c;h=b30326dea331b43d24b6951fba6eb1427f6de04c;hb=2d35731399890316610e85d7a7aea41529b1fea9;hp=94069d4a474a0e0b4ec120acf3fe5ed5e163a278;hpb=b36fc3b095b2038e6339a8d1fd103e09916783c7;p=ngircd-alex.git diff --git a/src/ngircd/lists.c b/src/ngircd/lists.c index 94069d4a..b30326de 100644 --- a/src/ngircd/lists.c +++ b/src/ngircd/lists.c @@ -7,19 +7,20 @@ * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. - * - * Management of IRC lists: ban, invite, ... */ - #include "portab.h" +/** + * @file + * Management of IRC lists: ban, invite, etc. + */ + #include "imp.h" #include #include "defines.h" #include "conn.h" -#include "client.h" #include "channel.h" #include "log.h" #include "match.h" @@ -86,7 +87,6 @@ Lists_Add(struct list_head *header, const char *Mask, bool OnlyOnce ) newelem->next = e; header->first = newelem; - LogDebug("Added \"%s\" to invite list", Mask); return true; } @@ -210,7 +210,6 @@ Lists_MakeMask(const char *Pattern) } /* Lists_MakeMask */ - bool Lists_Check( struct list_head *header, CLIENT *Client) {