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-12-04 05:17:24 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-12-04 05:17:24 +0000
commit671d6c57dad03943f36dbf7d657900aa2e62669d (patch)
tree5e61ea3d27d18baac46b1920eb636b9c6ca41e72
parent94429dba9293388fcd904a7dc6d9255b410528c2 (diff)
BUILD : 1.7.6 (474) BUGS : N/A NOTES : Unreal 391 TIME replies
git-svn-id: svn://svn.anope.org/anope/trunk@474 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@328 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/unreal32.c4
-rw-r--r--version.log6
3 files changed, 8 insertions, 3 deletions
diff --git a/Changes b/Changes
index 024db0883..359d01133 100644
--- a/Changes
+++ b/Changes
@@ -13,6 +13,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
+12/03 F Unreal 391 TIME replies [ #00]
12/03 F CS TOPICLOCK setting a maliformed topic in some cases [ #00]
12/03 F Bahamut support +I channel modes [ #00]
12/02 F Ultimate3 botserv bots were getting wrong modes [ #00]
diff --git a/src/unreal32.c b/src/unreal32.c
index d3d92a8b7..471dbf6fe 100644
--- a/src/unreal32.c
+++ b/src/unreal32.c
@@ -1160,13 +1160,13 @@ void anope_cmd_part(char *nick, char *chan, const char *fmt, ...)
}
}
-/* 391 */
+/* 391 RPL_TIME ":%s 391 %s %s :%s" */
void anope_cmd_391(char *source, char *timestr)
{
if (!timestr) {
return;
}
- send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr);
+ send_cmd(ServerName, "391 %s %s :%s", source, ServerName, timestr);
}
/* 250 */
diff --git a/version.log b/version.log
index 6b16eb422..a235d56a0 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
-VERSION_BUILD="473"
+VERSION_BUILD="474"
# $Log$
#
+# BUILD : 1.7.6 (474)
+# BUGS : N/A
+# NOTES : Unreal 391 TIME replies
+#
# BUILD : 1.7.6 (473)
# BUGS : N/A
# NOTES : In some cases if you set TOPICLOCK on the channel before it ever got a TOPIC, then attempted to set a TOPIC,