1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 09:46:38 +02:00

BUILD : 1.7.14 (1107) BUGS : 561 NOTES : Various small fixes for charybdis

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@831 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-08-04 09:16:34 +00:00
parent f978c93b2c
commit 9e136a5c2f
4 changed files with 19 additions and 7 deletions
+1
View File
@@ -51,6 +51,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
07/20 F db-merger.c and epona2anope.c will now properly delete old dbs. [ #00]
08/02 F Fixed very nasty typecast. GCC Hardened should now work. [#557]
08/03 F Corrected usermodes for ratbox and shadow. [#558]
08/04 F Various small fixes for Charybdis. [#561]
Provided by ThaPrince <jon@vile.com> - 2006
05/19 A Plexus 3 support. [ #00]
+1 -1
View File
@@ -602,7 +602,7 @@ int main(int ac, char **av, char **envp)
if (delayed_quit)
break;
moduleCallBackRun();
moduleCallBackRun();
waiting = -1;
if (t - last_check >= TimeoutCheck) {
+12 -5
View File
@@ -1803,8 +1803,8 @@ int charybdis_send_account(int argc, char **argv)
return MOD_CONT;
}
#if 0
/* XXX: We need a hook on /ns logout before this is useful! --nenolod */
/* We have one now! -GD */
int charybdis_send_deaccount(int argc, char **argv)
{
send_cmd((UseTS6 ? TS6SID : ServerName), "ENCAP * SU %s",
@@ -1812,7 +1812,6 @@ int charybdis_send_deaccount(int argc, char **argv)
return MOD_CONT;
}
#endif
/**
* Tell anope which function we want to perform each task inside of anope.
@@ -1914,7 +1913,7 @@ int AnopeInit(int argc, char **argv)
pmodule_ircd_cbmodes(myCbmodes);
pmodule_ircd_cmmodes(myCmmodes);
pmodule_ircd_csmodes(myCsmodes);
pmodule_ircd_useTSMode(0);
pmodule_ircd_useTSMode(1);
/** Deal with modes anope _needs_ to know **/
pmodule_invis_umode(UMODE_i);
@@ -1934,11 +1933,19 @@ int AnopeInit(int argc, char **argv)
hk = createEventHook(EVENT_NICK_REGISTERED, charybdis_send_account);
moduleAddEventHook(hk);
#if 0
/* XXX: It'd be nice if we could have an event like this, but it's not there yet :( */
/* It's there now! Trystan said so! -GD */
hk = createEventHook(EVENT_NICK_LOGOUT, charybdis_send_deaccount);
moduleAddEventHook(hk);
#endif
return MOD_CONT;
}
/* Clean up allocated things in here */
void AnopeFini(void)
{
if (UseTS6)
free(TS6SID);
}
/* EOF */
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
VERSION_BUILD="1106"
VERSION_BUILD="1107"
# $Log$
#
# BUILD : 1.7.14 (1107)
# BUGS : 561
# NOTES : Various small fixes for charybdis
#
# BUILD : 1.7.14 (1106)
# BUGS :
# NOTES : applied heinz's fix for the gcc hardened issue