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

# BUILD : 1.7.13 (1000)

# BUGS  : 424
# NOTES : Added TS6 Save support. This is #1000!

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@725 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-03-02 09:25:02 +00:00
parent 0f18525a2c
commit 708f566ffb
5 changed files with 17 additions and 11 deletions
+4 -3
View File
@@ -2,6 +2,7 @@ Anope Version S V N
--------------------
Provided by Anope Dev. <dev@anope.org> - 2006
02/04 A Events for channel kicks and NickServ logout. [ #00]
03/02 A Added support for TS6 Save (FNC) on ratbox, shadow and charybdis. [#424]
03/01 F Added ircd module support for valid_chan. [ #00]
03/01 F Minor issues in ns_saset. [#455]
02/13 F Yet anotehr 64bit issue. [ #00]
@@ -28,9 +29,9 @@ Provided by Anope Dev. <dev@anope.org> - 2006
03/01 F Fixed memleak in do_mass_mode(). [#450]
03/01 F Fixed memleaks in cs_list.c, hs_list.c and ns_list.c. [#447]
03/01 F Fixed memleaks in hs_set.c. [#441]
04/01 F Fixed missing TS6 functionality in channels.c. [#418]
04/01 F Fixed possible overflow in process(). [#445]
04/01 F Fixed memleak in do_cmode(). [#430]
03/02 F Fixed missing TS6 functionality in channels.c. [#418]
03/02 F Fixed possible overflow in process(). [#445]
03/02 F Fixed memleak in do_cmode(). [#430]
Provided by nenolod. <nenolod@nenolod.net> - 2006
02/03 A Support for Charybdis IRCd. [ #00]
+3 -1
View File
@@ -1761,7 +1761,9 @@ void charybdis_cmd_jupe(char *jserver, char *who, char *reason)
*/
int charybdis_valid_nick(char *nick)
{
/* no hard coded invalid nicks */
/* TS6 Save extension -Certus */
if (isdigit(*nick))
return 0;
return 1;
}
+3 -2
View File
@@ -1727,8 +1727,9 @@ void ratbox_cmd_jupe(char *jserver, char *who, char *reason)
*/
int ratbox_valid_nick(char *nick)
{
/* no hard coded invalid nicks */
return 1;
/* TS6 Save extension -Certus */
if (isdigit(*nick))
return 0;
}
/*
+3 -1
View File
@@ -1675,7 +1675,9 @@ void shadowircd_cmd_jupe(char *jserver, char *who, char *reason)
*/
int shadowircd_valid_nick(char *nick)
{
/* no hard coded invalid nicks */
/* TS6 Save extension -Certus */
if (isdigit(*nick))
return 0;
return 1;
}
+4 -4
View File
@@ -9,13 +9,13 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="13"
VERSION_EXTRA="-svn"
VERSION_BUILD="999"
VERSION_BUILD="1000"
# $Log$
#
# BUILD : 1.7.13 (999)
# BUGS : 430
# NOTES : Fixed memleak in do_cmode()
# BUILD : 1.7.13 (1000)
# BUGS : 424
# NOTES : Added TS6 Save support. This is #1000!
#
# BUILD : 1.7.13 (998)
# BUGS : 445