diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-19 18:25:20 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-19 18:25:20 +0000 |
commit | 422bc90c4524e089dcbf3c6c90dc5566155d416e (patch) | |
tree | 1e18040e34eebc413283e32b9d874321f9b8a3d7 | |
parent | ada71328a984fa145ddb27c8e6f2ca80dbb9524e (diff) |
BUILD : 1.7.6 (490) BUGS : 253 NOTES : Fixed loguser where the nickip is 0
git-svn-id: svn://svn.anope.org/anope/trunk@490 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@344 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/users.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/users.c b/src/users.c index 1417fd936..ec158bce1 100644 --- a/src/users.c +++ b/src/users.c @@ -399,7 +399,7 @@ User *do_nick(const char *source, char *nick, char *username, char *host, if (debug) alog("debug: new user: %s", nick); - if (ircd->nickip && ip) { + if (ircd->nickip) { addr.s_addr = htonl(ip); ntoa(addr, ipbuf, sizeof(ipbuf)); } diff --git a/version.log b/version.log index 3d483de33..533374eb3 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="489" +VERSION_BUILD="490" # $Log$ # +# BUILD : 1.7.6 (490) +# BUGS : 253 +# NOTES : Fixed loguser where the nickip is 0 +# # BUILD : 1.7.6 (489) # BUGS : 244, 246, 247, 248, 249, 250, 251, 252, 254, 255 # NOTES : 1. In some cases READONLY was not respected, and data was saved. |