From 6856ec2aae6950a24da5d5dc2dbe5b9a5a6568b6 Mon Sep 17 00:00:00 2001 From: "trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sat, 16 Oct 2004 15:54:31 +0000 Subject: [PATCH] BUILD : 1.7.5 (405) BUGS : 180 NOTES : Fixed tsbuf not being sent, which caused issues with ircds whom have +d (deaf) git-svn-id: svn://svn.anope.org/anope/trunk@405 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@269 5417fbe8-f217-4b02-8779-1006273d7864 --- src/nickserv.c | 5 +++-- version.log | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/nickserv.c b/src/nickserv.c index 784efa341..b6becd218 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -2290,6 +2290,7 @@ static int do_confirm(User * u) u->lastnickreg = time(NULL); if (ircd->modeonreg) { if (ircd->tsonmode) { + snprintf(tsbuf, sizeof(tsbuf), "%lu", u->timestamp); common_svsmode(u, ircd->modeonreg, tsbuf); } else { common_svsmode(u, ircd->modeonreg, NULL); @@ -2343,7 +2344,7 @@ static int do_group(User * u) for (i = 0; i < RootNumber; i++) { if (strstr(u->nick, ServicesRoots[i]) && !is_oper(u)) { notice_lang(s_NickServ, u, NICK_CANNOT_BE_REGISTERED, - u->nick); + u->nick); return MOD_CONT; } } @@ -2360,7 +2361,7 @@ static int do_group(User * u) u->nick); return MOD_CONT; } - } + } } if (!nick || !pass) { diff --git a/version.log b/version.log index 1f98d8370..76ca8b32d 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="404" +VERSION_BUILD="405" # $Log$ # +# BUILD : 1.7.5 (405) +# BUGS : 180 +# NOTES : Fixed tsbuf not being sent, which caused issues with ircds whom have +d (deaf) +# # BUILD : 1.7.5 (404) # BUGS : # NOTES : Fixed bug 188.