summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgeniusdex 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
committergeniusdex 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
commit33191186fedf6cf3d258ad8ead2a5d2fd2a72780 (patch)
treed52dee8c3a659a9d75ad6b62e29750c39e76f6a5 /src
parent978415e3200d8d2023d90bb3c811c387ddf13379 (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
Diffstat (limited to 'src')
-rw-r--r--src/messages.c4
1 files changed, 2 insertions, 2 deletions
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' */