]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/lists.c
GnuTLS: use 1024 (DH_BITS_MIN) as minimum size of the DH prime
[ngircd-alex.git] / src / ngircd / lists.c
index 94069d4a474a0e0b4ec120acf3fe5ed5e163a278..b30326dea331b43d24b6951fba6eb1427f6de04c 100644 (file)
@@ -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 <assert.h>
 
 #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)
 {