]> jfr.im git - solanum.git/blobdiff - extensions/sno_whois.c
Use const hook data where possible
[solanum.git] / extensions / sno_whois.c
index 93c07c8ef714eed5990a2e256f68e68bc1a852b9..f5c69d92c1accca3567d4cc6b367536467c1f1df 100644 (file)
 /* undefine this to allow anyone to receive whois notifications */
 #define OPERONLY
 
+static const char sno_desc[] =
+       "Adds server notice mask +W that allows "
+#ifdef OPERONLY
+       "operators"
+#else
+       "users"
+#endif
+       " to receive notices for when a WHOIS has been done on them";
+
 void show_whois(hook_data_client *);
 
 mapi_hfn_list_av1 whois_hfnlist[] = {
@@ -38,7 +47,7 @@ fini(void)
        snomask_modes['W'] = 0;
 }
 
-DECLARE_MODULE_AV2(sno_whois, init, fini, NULL, NULL, whois_hfnlist, NULL, NULL, NULL);
+DECLARE_MODULE_AV2(sno_whois, init, fini, NULL, NULL, whois_hfnlist, NULL, NULL, sno_desc);
 
 void
 show_whois(hook_data_client *data)