diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-26 15:18:21 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-26 15:18:21 +0000 |
commit | 433bf6124bab4a9cf1dd07efe2836cd9b61c945f (patch) | |
tree | 943c30e0102e60a665807ad87f96e6379bb5f112 | |
parent | c104ba608af03ec3f31ca40369e228b04bac1dae (diff) |
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
-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. |