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

BUILD : 1.7.2 (87) BUGS : 28 NOTES : Fixed bug with RDB and empty nickserv greet message.

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@63 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-05-06 20:10:34 +00:00
parent ff8b395693
commit f37f02692d
3 changed files with 11 additions and 2 deletions
+1
View File
@@ -1,6 +1,7 @@
Anope Version 1.7.x (will be renamed when next release is produced)
-------------------
Provided by Anope Dev. <dev@anope.org>
2004/06/05 Fixed bug with RDB and empty nickserv greet message (# 28).
2004/05/04 Fixed Badwords kicker to ignore control characters and color codes.
2004/05/04 anoperc bugfixes including checking if anope binary exists.
2004/05/03 always set the right module name when executing mod_tail commands
+5 -1
View File
@@ -1474,7 +1474,11 @@ void db_mysql_load_ns_dbase(void)
nc->memos.memomax = atoi(mysql_row[9]);
nc->channelcount = atoi(mysql_row[10]);
nc->channelmax = atoi(mysql_row[11]);
nc->greet = sstrdup(mysql_row[12]);
if (mysql_row[12][0] == '\0') /* check if it's empty */
nc->greet = NULL;
else
nc->greet = sstrdup(mysql_row[12]);
if (!NSAllowKillImmed)
nc->flags &= ~NI_KILL_IMMED;
+5 -1
View File
@@ -8,11 +8,15 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="2"
VERSION_BUILD="86"
VERSION_BUILD="87"
VERSION_EXTRA=""
# $Log$
#
# BUILD : 1.7.2 (87)
# BUGS : 28
# NOTES : Fixed bug with RDB and empty nickserv greet message.
#
# BUILD : 1.7.2 (86)
# BUGS :
# NOTES : Changed the allocation of buffer for normalizeBuffer yet again