]> jfr.im git - solanum.git/blobdiff - extensions/extb_account.c
Remove Windows support
[solanum.git] / extensions / extb_account.c
index 69dcda1f049a1a648635b6526222e7b8d876a17e..82af588993f9a34580f341c731c92539a709a165 100644 (file)
@@ -1,8 +1,6 @@
 /*
  * Account extban type: bans all users with any/matching account
  * -- jilles
- *
- * $Id: extb_account.c 1299 2006-05-11 15:43:03Z jilles $
  */
 
 #include "stdinc.h"
 #include "client.h"
 #include "ircd.h"
 
+static const char extb_desc[] = "Account ($a) extban type";
+
 static int _modinit(void);
 static void _moddeinit(void);
 static int eb_account(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
 
-DECLARE_MODULE_AV1(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1299 $");
+DECLARE_MODULE_AV2(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
 
 static int
 _modinit(void)