summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--mysql.c2
-rw-r--r--version.log6
3 files changed, 7 insertions, 2 deletions
diff --git a/Changes b/Changes
index a213f3c5e..fb14717fb 100644
--- a/Changes
+++ b/Changes
@@ -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)
diff --git a/mysql.c b/mysql.c
index b52524d36..cec85700e 100644
--- a/mysql.c
+++ b/mysql.c
@@ -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