diff options
author | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-04-17 12:20:18 +0000 |
---|---|---|
committer | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-04-17 12:20:18 +0000 |
commit | a7f2245085fee869e6eb24f1d5b682d0cf8398f5 (patch) | |
tree | b3f70cd9db9e6a821c7fe4c89691e22c57135972 | |
parent | a32595594ddd1ea9ed4eaffc4947995602b13860 (diff) |
BUILD : 1.7.1 (58) BUGS : NOTES : anope_ns_req was being referenced should have been anope_ns_request (fixed)
git-svn-id: svn://svn.anope.org/anope/trunk@58 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@39 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | mysql.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,7 @@ Anope Version SVN -------------------- Provided by Anope Dev. <dev@anope.org> +2004/04/17 Fixed bug where anope_ns_req was being referenced 2004/04/17 Added SIGUSR2 signal to Rehash Config and Save DBs 2004/04/16 Fixed broken password saves to MySQL (Bug #11) @@ -1411,7 +1411,7 @@ void db_mysql_load_ns_req_dbase(void) return; snprintf(sqlcmd, MAX_SQL_BUF, - "SELECT `nick`,`passcode`,`password`,`email`,`requested`,`active` FROM `anope_ns_req`;"); + "SELECT `nick`,`passcode`,`password`,`email`,`requested`,`active` FROM `anope_ns_request`;"); if (db_mysql_query(sqlcmd)) { log_perror("Can't create sql query: %s", sqlcmd); db_mysql_error(MYSQL_WARNING, "query"); diff --git a/version.log b/version.log index 3411f45b9..3e87ecbee 100644 --- a/version.log +++ b/version.log @@ -8,11 +8,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="1" -VERSION_BUILD="57" +VERSION_BUILD="58" VERSION_EXTRA="" # $Log$ # +# BUILD : 1.7.1 (58) +# BUGS : +# NOTES : anope_ns_req was being referenced should have been anope_ns_request (fixed) +# # BUILD : 1.7.1 (57) # BUGS : # NOTES : Added SIGUSR2 to rehash configuration and save databases |