diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/extern.h | 6 | ||||
-rw-r--r-- | src/config.c | 6 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 12 insertions, 7 deletions
@@ -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) |