diff --git a/extensions/spy_admin_notice.c b/extensions/spy_admin_notice.c index 3bc706ac9..8d4770634 100644 --- a/extensions/spy_admin_notice.c +++ b/extensions/spy_admin_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone uses ADMIN"; + void show_admin(hook_data *); mapi_hfn_list_av1 admin_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 admin_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(admin_spy, NULL, NULL, NULL, NULL, admin_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(admin_spy, NULL, NULL, NULL, NULL, admin_hfnlist, NULL, NULL, spy_desc); void show_admin(hook_data *data) diff --git a/extensions/spy_info_notice.c b/extensions/spy_info_notice.c index b23dfab36..01d608958 100644 --- a/extensions/spy_info_notice.c +++ b/extensions/spy_info_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone uses INFO"; + void show_info(hook_data *); mapi_hfn_list_av1 info_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 info_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(info_spy, NULL, NULL, NULL, NULL, info_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(info_spy, NULL, NULL, NULL, NULL, info_hfnlist, NULL, NULL, spy_desc); void show_info(hook_data *data) diff --git a/extensions/spy_links_notice.c b/extensions/spy_links_notice.c index ffe718c63..17b5d0e90 100644 --- a/extensions/spy_links_notice.c +++ b/extensions/spy_links_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone uses LINKS"; + void show_links(hook_data *); mapi_hfn_list_av1 links_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 links_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(links_spy, NULL, NULL, NULL, NULL, links_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(links_spy, NULL, NULL, NULL, NULL, links_hfnlist, NULL, NULL, spy_desc); void show_links(hook_data *data) diff --git a/extensions/spy_motd_notice.c b/extensions/spy_motd_notice.c index 51471787a..1a6c123ed 100644 --- a/extensions/spy_motd_notice.c +++ b/extensions/spy_motd_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone looks at the MOTD"; + void show_motd(hook_data *); mapi_hfn_list_av1 motd_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 motd_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(motd_spy, NULL, NULL, NULL, NULL, motd_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(motd_spy, NULL, NULL, NULL, NULL, motd_hfnlist, NULL, NULL, spy_desc); void show_motd(hook_data *data) diff --git a/extensions/spy_stats_notice.c b/extensions/spy_stats_notice.c index 73c63e5c7..6bc231417 100644 --- a/extensions/spy_stats_notice.c +++ b/extensions/spy_stats_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone uses STATS"; + void show_stats(hook_data_int *); mapi_hfn_list_av1 stats_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 stats_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(stats_spy, NULL, NULL, NULL, NULL, stats_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(stats_spy, NULL, NULL, NULL, NULL, stats_hfnlist, NULL, NULL, spy_desc); void show_stats(hook_data_int *data) diff --git a/extensions/spy_stats_p_notice.c b/extensions/spy_stats_p_notice.c index b5b4524d8..c068a252e 100644 --- a/extensions/spy_stats_p_notice.c +++ b/extensions/spy_stats_p_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone looks at the operator list"; + void show_stats_p(hook_data *); mapi_hfn_list_av1 stats_p_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 stats_p_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(stats_p_spy, NULL, NULL, NULL, NULL, stats_p_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(stats_p_spy, NULL, NULL, NULL, NULL, stats_p_hfnlist, NULL, NULL, spy_desc); void show_stats_p(hook_data *data) diff --git a/extensions/spy_trace_notice.c b/extensions/spy_trace_notice.c index d7f830fd8..e4f5e567a 100644 --- a/extensions/spy_trace_notice.c +++ b/extensions/spy_trace_notice.c @@ -26,6 +26,8 @@ #include "ircd.h" #include "send.h" +static const char spy_desc[] = "Sends a notice when someone uses TRACE or LTRACE"; + void show_trace(hook_data_client *); mapi_hfn_list_av1 trace_hfnlist[] = { @@ -33,7 +35,7 @@ mapi_hfn_list_av1 trace_hfnlist[] = { {NULL, NULL} }; -DECLARE_MODULE_AV2(trace_spy, NULL, NULL, NULL, NULL, trace_hfnlist, NULL, NULL, NULL); +DECLARE_MODULE_AV2(trace_spy, NULL, NULL, NULL, NULL, trace_hfnlist, NULL, NULL, spy_desc); void show_trace(hook_data_client *data)