]> jfr.im git - solanum.git/blobdiff - extensions/createauthonly.c
Move module description headers to the top
[solanum.git] / extensions / createauthonly.c
index faf10e570321e4477334449007006fc368540211..dea11a0cc34d6adfa73692e07c4c6121a20eb476 100644 (file)
@@ -4,8 +4,6 @@
  * running private chat systems, or if a network gets droneflood
  * problems. It will return ERR_NEEDREGGEDNICK on failure.
  *    -- nenolod
- *
- * $Id: createauthonly.c 833 2006-02-15 00:27:59Z jilles $
  */
 
 #include "stdinc.h"
@@ -18,6 +16,8 @@
 #include "snomask.h"
 #include "numeric.h"
 
+static const char restrict_desc[] = "Restricts channel creation to authenticated users and IRC operators only";
+
 static void h_can_create_channel_authenticated(hook_data_client_approval *);
 
 mapi_hfn_list_av1 restrict_hfnlist[] = {
@@ -25,7 +25,7 @@ mapi_hfn_list_av1 restrict_hfnlist[] = {
        { NULL, NULL }
 };
 
-DECLARE_MODULE_AV1(createauthonly, NULL, NULL, NULL, NULL, restrict_hfnlist, "$Revision: 833 $");
+DECLARE_MODULE_AV2(createauthonly, NULL, NULL, NULL, NULL, restrict_hfnlist, NULL, NULL, restrict_desc);
 
 static void
 h_can_create_channel_authenticated(hook_data_client_approval *data)