1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

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
This commit is contained in:
ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-04-17 12:20:18 +00:00
parent a32595594d
commit a7f2245085
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -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)
+1 -1
View File
@@ -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");
+5 -1
View File
@@ -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