Rename m_nokillservices.so to no_kill_services.so per the naming scheme.

This commit is contained in:
Jilles Tjoelker 2013-04-27 17:00:10 +02:00
parent 373a04393b
commit 0ef5377a36
4 changed files with 7 additions and 7 deletions

View file

@ -31,7 +31,7 @@
#loadmodule "extensions/sno_globaloper.so";
#loadmodule "extensions/sno_whois.so";
#loadmodule "extensions/override.so";
#loadmodule "extensions/m_nokillservices.so";
#loadmodule "extensions/no_kill_services.so";
/*
* IP cloaking extensions: use ip_cloaking_4.0

View file

@ -70,7 +70,7 @@
* Remote oper up notices -- sno_globaloper.so
* /whois notifications (snomask +W) -- sno_whois.so
* Oper-override (modehacking only) -- override.so
* Stop services kills -- m_nokillservices.so
* Stop services kills -- no_kill_services.so
*/
#loadmodule "extensions/chm_adminonly.so";
#loadmodule "extensions/chm_operonly.so";
@ -98,7 +98,7 @@
#loadmodule "extensions/sno_globaloper.so";
#loadmodule "extensions/sno_whois.so";
#loadmodule "extensions/override.so";
#loadmodule "extensions/m_nokillservices.so";
#loadmodule "extensions/no_kill_services.so";
/* serverinfo {}: Contains information about the server. (OLD M:) */
serverinfo {

View file

@ -69,7 +69,6 @@ SRCS = \
m_findforwards.c \
m_identify.c \
m_mkpasswd.c \
m_nokillservices.c \
m_ojoin.c \
m_okick.c \
m_omode.c \
@ -78,6 +77,7 @@ SRCS = \
m_webirc.c \
m_remove.c \
m_roleplay.c \
no_kill_services.c \
no_locops.c \
no_oper_invis.c \
spy_admin_notice.c \

View file

@ -22,7 +22,7 @@
static void block_services_kill(void *data);
mapi_hfn_list_av1 m_nokillservices_hfnlist[] = {
mapi_hfn_list_av1 no_kill_services_hfnlist[] = {
{ "can_kill", (hookfn) block_services_kill },
{ NULL, NULL }
};
@ -47,5 +47,5 @@ block_services_kill(void *vdata)
}
}
DECLARE_MODULE_AV1(m_nokillservices, NULL, NULL, NULL, NULL,
m_nokillservices_hfnlist, "Charybdis 3.4+");
DECLARE_MODULE_AV1(no_kill_services, NULL, NULL, NULL, NULL,
no_kill_services_hfnlist, "Charybdis 3.4+");