diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/mysql.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -27,6 +27,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2004 09/07 A Ircd CHANMODE now trapped and stored. [ #00] 08/23 A New protocol independent design (aka anope-capab). [ #00] 08/28 A New IRCD document for adding new ircd support to new design. [ #00] +10/09 F Bug in MySQL debug, possibly causing segfaults. [#149] 10/09 F Lots of code clean up to prevent segfaults [ #00] 10/07 F Fixed TSMODE ircds that don't stay this in their CAPAB [ #00] 10/05 F Cleaned up how OS/CS CLEAR MODES works [ #00] diff --git a/src/mysql.c b/src/mysql.c index 97df90b2f..0153493ea 100644 --- a/src/mysql.c +++ b/src/mysql.c @@ -124,7 +124,7 @@ int db_mysql_query(char *sql) if (debug) { s = db_mysql_quote(sql); - alog(s); + alog("debug: %s", s); free(s); } diff --git a/version.log b/version.log index abf533794..7ae1f55a3 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="385" +VERSION_BUILD="390" # $Log$ # +# BUILD : 1.7.5 (390) +# BUGS : 149 +# NOTES : Bug in MySQL debug, possibly causing segfaults. +# # BUILD : 1.7.5 (385) # BUGS : N/A # NOTES : Moved more veriable declarations above the new null checking code |