X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/fc939ca58f179a59fda915a9041e0fc1970cedab..4d12e65469c877f8028d5ac40a39457ec96b2f40:/modules/m_operspy.c diff --git a/modules/m_operspy.c b/modules/m_operspy.c index 3158ead8..32a1a96d 100644 --- a/modules/m_operspy.c +++ b/modules/m_operspy.c @@ -31,8 +31,7 @@ #include "send.h" #include "channel.h" #include "client.h" -#include "common.h" -#include "config.h" +#include "defaults.h" #include "ircd.h" #include "numeric.h" #include "s_serv.h" @@ -42,8 +41,11 @@ #include "modules.h" #include "logger.h" -static int ms_operspy(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, - int parc, const char *parv[]); +static const char operspy_desc[] = + "Provides the operspy facility for viewing normally private data"; + +static void ms_operspy(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, + int parc, const char *parv[]); struct Message operspy_msgtab = { "OPERSPY", 0, 0, 0, 0, @@ -52,9 +54,6 @@ struct Message operspy_msgtab = { mapi_clist_av1 operspy_clist[] = { &operspy_msgtab, NULL }; -static const char operspy_desc[] = - "Provides the operspy facility for viewing normally private data"; - DECLARE_MODULE_AV2(operspy, NULL, NULL, operspy_clist, NULL, NULL, NULL, NULL, operspy_desc); /* ms_operspy() @@ -62,7 +61,7 @@ DECLARE_MODULE_AV2(operspy, NULL, NULL, operspy_clist, NULL, NULL, NULL, NULL, o * parv[1] - operspy command * parv[2] - optional params */ -static int +static void ms_operspy(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { @@ -87,7 +86,7 @@ ms_operspy(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour len = strlen(parv[i]) + 1; if((size_t)(cur_len + len) >= sizeof(buffer)) - return 0; + return; snprintf(ptr, sizeof(buffer) - cur_len, "%s ", parv[i]); @@ -97,6 +96,4 @@ ms_operspy(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour report_operspy(source_p, parv[1], buffer); } - - return 0; }