diff options
-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 |