diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-09-10 20:43:52 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-09-10 20:43:52 +0000 |
commit | 8735d2becb8322bc23b2b98cc813e357176f2a8a (patch) | |
tree | 7a2068a601d2fcc3f72737982ff23eec4875aca4 | |
parent | 757f70de67ebae6a6a5f27105151974567df0d1c (diff) |
BUILD : 1.7.10 (878) BUGS : NOTES : Applied patch by ThaPrince to fix XLINEs with plexus
git-svn-id: svn://svn.anope.org/anope/trunk@878 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@625 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/plexus.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -53,6 +53,7 @@ Provided by Hal9000 <hal9000@musichat.net> - 2005 Provided by ThaPrince <jon@vile.com> - 2005 09/06 A SGLINE support for plexus. [ #00] +09/10 F Sending XLINEs with plexus was broken. [ #00] 09/06 F Missing sources and other minor issues with plexus. [ #00] 09/04 F SGLINE/SQLINE for ratbox/plexus/etc needs a valid nick. [ #00] diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c index f419a77a0..4429b757e 100644 --- a/src/protocol/plexus.c +++ b/src/protocol/plexus.c @@ -806,7 +806,7 @@ plexus_cmd_svsadmin (char *server, int set) void plexus_cmd_sgline (char *mask, char *reason) { - send_cmd (s_OperServ, "XLINE * %s 0 :%s", mask, reason); + send_cmd (s_OperServ, "XLINE * %s :%s", mask, reason); } void diff --git a/version.log b/version.log index a232853e1..03e3bae34 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="877" +VERSION_BUILD="878" # $Log$ # +# BUILD : 1.7.10 (878) +# BUGS : +# NOTES : Applied patch by ThaPrince to fix XLINEs with plexus +# # BUILD : 1.7.10 (877) # BUGS : # NOTES : Added two more globops warnings when a database cannott be opened |