summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-10-03 18:19:37 +0000
committercertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-10-03 18:19:37 +0000
commit8d89775ceb31c41ec40512891ab209b217eb65d0 (patch)
tree735d4e49dca7451bb607e5fe9b5005db8b6afeb1
parent96ec4cf401c7d52ddff087b450b98bf28a9a4b67 (diff)
BUILD : 1.7.5 (367) BUGS : NOTES : Changed UserKeys from uint to long uint.
git-svn-id: svn://svn.anope.org/anope/trunk@367 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@238 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--include/extern.h6
-rw-r--r--src/config.c6
-rw-r--r--version.log6
4 files changed, 12 insertions, 7 deletions
diff --git a/Changes b/Changes
index 4ff260c91..c919345eb 100644
--- a/Changes
+++ b/Changes
@@ -4,6 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
09/20 A Added RestrictOperNicks as new feature in services.conf. [ #00]
09/08 A Removed rand() and ported bsd's arc4random() to fit our needs. [ #00]
08/24 A New -l option for am script to list possible selectors. [ #00]
+10/03 F Changed UserKeys from uint to long uint. [ #00]
09/21 F An option to explicitly not use mysql is added to Config [ #00]
09/19 F Rewrote the internals of moduleData to save lots of memory. [ #00]
09/17 F Fixed MySQL error, whereby checks are only done if mysql is on. [ #00]
diff --git a/include/extern.h b/include/extern.h
index 4c6f180c1..2fd0f5692 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -498,9 +498,9 @@ E char *DefconMessage;
E char *DefConAkillReason;
E char *DefConOffMessage;
-E unsigned int UserKey1;
-E unsigned int UserKey2;
-E unsigned int UserKey3;
+E long unsigned int UserKey1;
+E long unsigned int UserKey2;
+E long unsigned int UserKey3;
/**** converter.c ****/
E int convert_ircservices_44(void);
diff --git a/src/config.c b/src/config.c
index e13a35790..ba5eeeb78 100644
--- a/src/config.c
+++ b/src/config.c
@@ -320,9 +320,9 @@ char *DefConOffMessage;
char *DefconMessage;
char *DefConAkillReason;
-unsigned int UserKey1;
-unsigned int UserKey2;
-unsigned int UserKey3;
+long unsigned int UserKey1;
+long unsigned int UserKey2;
+long unsigned int UserKey3;
/*************************************************************************/
diff --git a/version.log b/version.log
index 4b0960afe..87691db3c 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="5"
-VERSION_BUILD="366"
+VERSION_BUILD="367"
# $Log$
#
+# BUILD : 1.7.5 (367)
+# BUGS :
+# NOTES : Changed UserKeys from uint to long uint.
+#
# BUILD : 1.7.5 (366)
# BUGS :
# NOTES : Fixed a typo in T his previous commit (logins on -> logs on)