summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-10-21 13:51:42 +0000
committerrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-10-21 13:51:42 +0000
commit3fad73f4cd395b82648c1f3191eb9c4dbd236bdd (patch)
tree4b5ddbe5cb4f229c6befebd7d71e2e0c7a6729ef
parent5b3eb75157915ee67086f4b577f41dad11c56964 (diff)
BUILD : 1.7.17 (1192) BUGS : 617 NOTES : Send svspart instead of eob
git-svn-id: svn://svn.anope.org/anope/trunk@1192 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@912 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes2
-rw-r--r--src/ircd.c2
-rw-r--r--version.log7
3 files changed, 9 insertions, 2 deletions
diff --git a/Changes b/Changes
index ba6e283c5..36448c165 100644
--- a/Changes
+++ b/Changes
@@ -3,6 +3,8 @@ Anope Version S V N
10/17 F Encryption, users can now pick none, old, md5 or sha1. [ #00]
10/18 F MLock support for +c was missing on ultimate3. [ #00]
10/20 F Error message when unable to register due to NSRegDelay. [#616]
+10/21 F svspart sends svspart instead of eob. [#617]
+
Anope Version 1.7.17
--------------------
diff --git a/src/ircd.c b/src/ircd.c
index 110db5950..906449aff 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -607,7 +607,7 @@ void anope_cmd_svsjoin(char *source, char *nick, char *chan)
void anope_cmd_svspart(char *source, char *nick, char *chan)
{
- ircdproto.ircd_cmd_eob(source, nick, chan);
+ ircdproto.ircd_cmd_svspart(source, nick, chan);
}
void anope_cmd_swhois(char *source, char *who, char *mask)
diff --git a/version.log b/version.log
index 15d624ed9..68aeeae11 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,15 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="17"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1191"
+VERSION_BUILD="1192"
# $Log$
#
+# BUILD : 1.7.17 (1192)
+# BUGS : 617
+# NOTES : Send svspart instead of eob
+#
+#
# BUILD : 1.7.17 (1191)
# BUGS : 616
# NOTES : Error message changed when trying to register a nick before NSRegDelay is up.