summaryrefslogtreecommitdiff
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-10-16 15:54:31 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-10-16 15:54:31 +0000
commit6856ec2aae6950a24da5d5dc2dbe5b9a5a6568b6 (patch)
treecd25cc4086b1d5c0cc8dcf66241865a17b0d7051
parentb1e213ccf0ca95e56e79cb67d92e5d907c84e07a (diff)
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
-rw-r--r--src/nickserv.c5
-rw-r--r--version.log6
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.