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.