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

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
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-10-03 18:19:37 +00:00
parent 96ec4cf401
commit 8d89775ceb
4 changed files with 12 additions and 7 deletions
+1
View File
@@ -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]
+3 -3
View File
@@ -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);
+3 -3
View File
@@ -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;
/*************************************************************************/
+5 -1
View File
@@ -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)