diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-10-02 11:52:00 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-10-02 11:52:00 +0000 |
commit | 33191186fedf6cf3d258ad8ead2a5d2fd2a72780 (patch) | |
tree | d52dee8c3a659a9d75ad6b62e29750c39e76f6a5 | |
parent | 978415e3200d8d2023d90bb3c811c387ddf13379 (diff) |
BUILD : 1.7.11 (910) BUGS : NOTES : Fixed some stats not passing the correct letter to anope_cmd_219
git-svn-id: svn://svn.anope.org/anope/trunk@910 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@656 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | src/messages.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -4,7 +4,8 @@ Provided by Anope Dev. <dev@anope.org> - 2005 10/01 A Information on uplink server can be displayed via OperServ STATS. [ #00] 09/29 A Configuration option to change fantasy command prefix character. [ #00] 09/28 A Event for fantasy commands triggered without channel access. [ #00] -10/01 F ChanServ HOP was available on IRCDs without halfop support. [ #00] +10/02 F Numeric 219 didn't give correct letter for STATS u. [ #00] +10/02 F ChanServ HOP was available on IRCDs without halfop support. [ #00] 10/01 F Placed capab tokens and flags into a table for easier handling. [ #00] 10/01 F Capab parsing on hybrid/plexus/ratbox failed. [ #00] 10/01 F Typo in example.conf (DevNullAlias was called DevNullName). [ #00] diff --git a/src/messages.c b/src/messages.c index 119200d98..263e96ea2 100644 --- a/src/messages.c +++ b/src/messages.c @@ -263,7 +263,7 @@ int m_stats(char *source, int ac, char **av) } } - anope_cmd_219(source, NULL); + anope_cmd_219(source, av[0]); break; case 'o': case 'O': @@ -296,7 +296,7 @@ int m_stats(char *source, int ac, char **av) uptime % 60); anope_cmd_250("%s :Current users: %d (%d ops); maximum %d", source, usercnt, opcnt, maxusercnt); - anope_cmd_219(source, NULL); + anope_cmd_219(source, av[0]); break; } /* case 'u' */ diff --git a/version.log b/version.log index f31b2788f..6d81f3cd3 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="11" VERSION_EXTRA="-svn" -VERSION_BUILD="909" +VERSION_BUILD="910" # $Log$ # +# BUILD : 1.7.11 (910) +# BUGS : +# NOTES : Fixed some stats not passing the correct letter to anope_cmd_219 +# # BUILD : 1.7.11 (909) # BUGS : # NOTES : Fixed /cs hop being available on ircds without halfop support |