summaryrefslogtreecommitdiff
path: root/src/nickserv.c
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-11-28 06:10:17 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-11-28 06:10:17 +0000
commitf37314234168d48ea2dddba3a3b4b8fefadab8b3 (patch)
treed2a0f3dab7647c7b4b99ae7004002b242d20deff /src/nickserv.c
parentc55942927eccc7b3bf3e5aa742acdb737b4a8989 (diff)
BUILD : 1.7.6 (463) BUGS : 192, 210, 222, 234 NOTES : 1. Removed +d references from the ptlink protocol code, since they do not timestamp the nicks 2. Memos sent as notification of receipt can not be cancelled. 3. Unreal3.2 supports SVSMODE -b on clearing bans 4. fixed do_kill() not remove the user from the user list 5. /os set sql [on|off] runtime sql toggle 6. Segfaults logged to the services log when DumpCore is disabled 7. fixed RUNGROUP not passed during build time 8. Exceptions now update if the limit is changed 9. Solid-IRCD support 10. Fixed TSMODE warnings when using FANTASY commands 11. Fixed read_int32 warnings (fixes compiling and running under cygwin) - Thats all..
git-svn-id: svn://svn.anope.org/anope/trunk@463 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@317 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/nickserv.c')
-rw-r--r--src/nickserv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nickserv.c b/src/nickserv.c
index 773a1282b..e025b8f75 100644
--- a/src/nickserv.c
+++ b/src/nickserv.c
@@ -374,7 +374,7 @@ void load_old_ns_dbase(void)
int failed = 0;
int16 tmp16;
- int32 tmp32;
+ uint32 tmp32;
char bufn[NICKMAX], bufp[PASSMAX];
char *email, *greet, *url, *forbidby, *forbidreason;
@@ -632,7 +632,7 @@ void load_ns_req_db(void)
dbFILE *f;
int i, c, ver;
NickRequest *nr;
- int32 tmp32;
+ uint32 tmp32;
int failed = 0;
if (!(f = open_db(s_NickServ, PreNickDBName, "r", PRE_NICK_VERSION)))
@@ -663,7 +663,7 @@ void load_ns_dbase(void)
NickCore *nc, **nclast, *ncprev;
int failed = 0;
int16 tmp16;
- int32 tmp32;
+ uint32 tmp32;
char *s;
if (!(f = open_db(s_NickServ, NickDBName, "r", NICK_VERSION)))