]> jfr.im git - solanum.git/blobdiff - extensions/extb_extgecos.c
Merge pull request #288 from edk0/umode-o-split
[solanum.git] / extensions / extb_extgecos.c
index 6060044e7015e772bc05f693d682396f32ef4d64..7dbf73f1762cdead3deb283b619bc8dccf6d4222 100644 (file)
@@ -2,8 +2,6 @@
  * Extended extban type: bans all users with matching nick!user@host#gecos.
  * Requested by Lockwood.
  *  - nenolod
- *
- * $Id: extb_realname.c 1339 2006-05-17 00:45:40Z nenolod $
  */
 
 #include "stdinc.h"
 #include "client.h"
 #include "ircd.h"
 
+static const char extb_desc[] = "Extended mask ($x) extban type";
+
 static int _modinit(void);
 static void _moddeinit(void);
 static int eb_extended(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
 
-DECLARE_MODULE_AV1(extb_extended, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1339 $");
+DECLARE_MODULE_AV2(extb_extended, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
 
 static int
 _modinit(void)