1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 23:23:13 +02:00

BUILD : 1.7.19 (1310) BUGS : 794 NOTES : Fixes the segfault in inspircd11.c / anope_event_capab() on missing required modules.

git-svn-id: svn://svn.anope.org/anope/trunk@1310 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1028 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
mark mark@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-10-07 18:00:05 +00:00
parent f055aa452a
commit 0318d9547e
3 changed files with 8 additions and 7 deletions
+1
View File
@@ -1,5 +1,6 @@
Anope Version S V N
--------------------
10/07 F Segfault on missing required InspIRCd11 modules. [#794]
08/29 A Session limit exceptions now support IP numbers as hostmask. [#723]
08/29 A Added InspIRCd11 vIdent support. [#684]
08/30 A Added support for channel keys to UnrealIRCd 3.2 SVSJOIN command. [#774]
+2 -6
View File
@@ -1556,18 +1556,14 @@ int anope_event_capab(char *source, int ac, char **av)
if (has_globopsmod == 0) {
send_cmd(NULL,
"ERROR :m_globops is not loaded. This is required by Anope");
strscpy(quitmsg,
"Remote server does not have the m_globops module loaded, and this is required.",
sizeof(quitmsg));
quitmsg = "Remote server does not have the m_globops module loaded, and this is required.";
quitting = 1;
return MOD_STOP;
}
if (has_servicesmod == 0) {
send_cmd(NULL,
"ERROR :m_services is not loaded. This is required by Anope");
strscpy(quitmsg,
"Remote server does not have the m_services module loaded, and this is required.",
sizeof(quitmsg));
quitmsg = "Remote server does not have the m_services module loaded, and this is required.";
quitting = 1;
return MOD_STOP;
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1309"
VERSION_BUILD="1310"
# $Log$
#
# BUILD : 1.7.19 (1310)
# BUGS : 794
# NOTES : Fixes the segfault in inspircd11.c / anope_event_capab() on missing required modules.
#
# BUILD : 1.7.19 (1309)
# BUGS : 793
# NOTES : Fixed a typo in inspircd11.c where it checked for chgident.so