From 433bf6124bab4a9cf1dd07efe2836cd9b61c945f Mon Sep 17 00:00:00 2001 From: "dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Wed, 26 May 2004 15:18:21 +0000 Subject: [PATCH] BUILD : 1.7.3 (126) BUGS : 73 NOTES : Repaired /NS GROUP for compiled but disabled MySQL support. git-svn-id: svn://svn.anope.org/anope/trunk@126 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@100 5417fbe8-f217-4b02-8779-1006273d7864 --- Changes | 1 + mysql.c | 2 +- rdb.c | 2 +- version.log | 6 +++++- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 755723e2b..d8b66cba7 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,7 @@ Provided by Anope Dev. - 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] +05/26 A Repaired /NS GROUP for compiled but disabled MySQL support. [ #73] 05/24 F Fixed typo in example.conf. [ #70] 05/24 F Cleaned up compile errors on older compilers. [ #69] 05/21 F Removed threads.c file. [ #64] diff --git a/mysql.c b/mysql.c index 5424f8b2e..ccd75b69d 100644 --- a/mysql.c +++ b/mysql.c @@ -159,7 +159,7 @@ char *db_mysql_quote(char *sql) char *quoted; - if (!sql || !do_mysql) { + if (!sql) { return sstrdup(""); } diff --git a/rdb.c b/rdb.c index 6e93f8cdb..9063898ac 100644 --- a/rdb.c +++ b/rdb.c @@ -30,7 +30,7 @@ int rdb_open() { #ifdef USE_MYSQL - return 1; // db_mysql_open(); + return do_mysql; // db_mysql_open(); #endif } diff --git a/version.log b/version.log index 3b1bb3e0e..b620e8272 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="125" +VERSION_BUILD="126" # $Log$ # +# BUILD : 1.7.3 (126) +# BUGS : 73 +# NOTES : Repaired /NS GROUP for compiled but disabled MySQL support. +# # BUILD : 1.7.3 (125) # BUGS : 72 # NOTES : New /CS CLEAR HOPS for ircds that support halfops.