summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-12-31 06:30:04 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-12-31 06:30:04 +0000
commit59122c8ca203f81d79ea26d09399f071a2fd77ad (patch)
treeaf5d3177ce94d3feddcaea4196e4b980833f1030
parent17d9d5a990350a8937f6bf46c2269202f0958c3f (diff)
BUILD : 1.7.6 (518) BUGS : 262 NOTES : CS ACCESS was also affected by the overflow
git-svn-id: svn://svn.anope.org/anope/trunk@518 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@372 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes2
-rw-r--r--src/chanserv.c2
-rw-r--r--version.log6
3 files changed, 7 insertions, 3 deletions
diff --git a/Changes b/Changes
index 7cd22fd03..709fada9a 100644
--- a/Changes
+++ b/Changes
@@ -16,7 +16,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
-12/31 F Fixed integer overflow error with CS LEVELS. [#262]
+12/31 F Fixed integer overflow error with CS ACCESS/LEVELS. [#262]
12/30 F Fixed moduleAddData using an old moduleData as list head. [#261]
12/30 F List handling of moduleData was bad on deletion. [#261]
12/30 F Few memleaks with moduleData functions returning early. [ #00]
diff --git a/src/chanserv.c b/src/chanserv.c
index ca012639b..1247463e1 100644
--- a/src/chanserv.c
+++ b/src/chanserv.c
@@ -4028,7 +4028,7 @@ static int do_access(User * u)
ChanAccess *access;
int i;
- short level = 0, ulev;
+ int level = 0, ulev;
int is_list = (cmd && stricmp(cmd, "LIST") == 0);
int is_servadmin = is_services_admin(u);
diff --git a/version.log b/version.log
index 9f2cbc1fe..af22babdb 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
-VERSION_BUILD="517"
+VERSION_BUILD="518"
# $Log$
#
+# BUILD : 1.7.6 (518)
+# BUGS : 262
+# NOTES : CS ACCESS was also affected by the overflow
+#
# BUILD : 1.7.6 (517)
# BUGS : 262
# NOTES : Fixed integer overflow error with CS LEVELS.