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

BUILD : 1.7.3 (183) BUGS : 92 NOTES : Added check to see if MysqlName and MysqlUser were not null to avoid any problems.

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@128 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-06-10 00:08:49 +00:00
parent dfad1f6a4d
commit 1b30a95400
3 changed files with 15 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
05/24 A New NSNickTracking directive to provide nick tracking. [ #71]
05/21 A Auto enforce upon AKICK addition. [ #63]
05/21 A New file docs/OLDCHANGES contains all change history. [ #65]
06/10 F Added check to see if MysqlUser and MysqlName were not null. [ #92]
06/09 F Corrected a number of spelling errors in en_us.l. [ #94]
06/09 F Corrected a large number of spelling and typing errors in docs. [ #87]
06/09 F Corrected compile warning for Hybrid support. [ #93]
+9
View File
@@ -59,6 +59,15 @@ int db_mysql_init()
alog("MySQL has been enabled.");
}
/* The following configuration options are required.
* If missing disable MySQL to avoid any problems.
*/
if (!MysqlName || !MysqlUser) {
do_mysql = 0;
alog("MySQL Error: Set all required configuration options.");
}
if (!db_mysql_open())
do_mysql = 0;
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="3"
VERSION_BUILD="182"
VERSION_BUILD="183"
# $Log$
#
# BUILD : 1.7.3 (183)
# BUGS : 92
# NOTES : Added check to see if MysqlName and MysqlUser were not null to avoid any problems.
#
# BUILD : 1.7.3 (182)
# BUGS : 94
# NOTES : Fixed number of spelling errors in en_us.l. Thanks to Trystan for assisting corrections.