X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/c88cdb00957d1bafae4587343b5ab7df14b75f8b..8097430a810ac1535fe5304f74991b16ff58b064:/modules/m_locops.c?ds=sidebyside diff --git a/modules/m_locops.c b/modules/m_locops.c index fb07053..f03cc2b 100644 --- a/modules/m_locops.c +++ b/modules/m_locops.c @@ -27,7 +27,7 @@ #include "stdinc.h" #include "client.h" #include "ircd.h" -#include "irc_string.h" +#include "match.h" #include "numeric.h" #include "send.h" #include "s_user.h" @@ -54,7 +54,6 @@ DECLARE_MODULE_AV1(locops, NULL, NULL, locops_clist, NULL, NULL, "$Revision: 254 /* * m_locops - LOCOPS message handler * (write to *all* local opers currently online) - * parv[0] = sender prefix * parv[1] = message text */ static int @@ -62,7 +61,7 @@ m_locops(struct Client *client_p, struct Client *source_p, int parc, const char { sendto_wallops_flags(UMODE_LOCOPS, source_p, "LOCOPS - %s", parv[1]); - if(dlink_list_length(&cluster_conf_list) > 0) + if(rb_dlink_list_length(&cluster_conf_list) > 0) cluster_generic(source_p, "LOCOPS", SHARED_LOCOPS, CAP_CLUSTER, ":%s", parv[1]); @@ -72,8 +71,8 @@ m_locops(struct Client *client_p, struct Client *source_p, int parc, const char static int ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { - /* parv[0] parv[1] parv[2] - * oper target serv message + /* source_p parv[1] parv[2] + * oper target serv message */ propagate_generic(source_p, "LOCOPS", parv[1], CAP_CLUSTER, ":%s", parv[2]);