diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | mysql.c | 2 | ||||
-rw-r--r-- | rdb.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 8 insertions, 3 deletions
@@ -5,6 +5,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] +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] @@ -159,7 +159,7 @@ char *db_mysql_quote(char *sql) char *quoted; - if (!sql || !do_mysql) { + if (!sql) { return sstrdup(""); } @@ -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. |