1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-04 21:43:13 +02:00

Fixed a /stats bug

This commit is contained in:
codemastr
2003-08-03 18:05:49 +00:00
parent 4ac2e2ce6b
commit c8bfc594cd
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -2314,3 +2314,4 @@ seen. gmtime warning still there
- Added stats flags for except throttle and ban version blocks
- stats bugfixes: a null pointer crash and a '/stats k' bug.
- Fixed a couple of problems in the new stats system
- Fixed another stats problem, reported by Angrywolf (#0001163)
+3 -3
View File
@@ -39,7 +39,7 @@ int stats_denylinkauto(aClient *, char *);
int stats_exceptthrottle(aClient *, char *);
int stats_denydcc(aClient *, char *);
int stats_kline(aClient *, char *);
int stats_banreal(aClient *, char *);
int stats_banrealname(aClient *, char *);
int stats_sqline(aClient *, char *);
int stats_linkinfoint(aClient *, char *, int);
int stats_linkinfo(aClient *, char *);
@@ -103,7 +103,7 @@ struct statstab StatsTable[] = {
{ 'h', "link", stats_links, 0 },
{ 'k', "kline", stats_kline, 0 },
{ 'l', "linkinfo", stats_linkinfo, SERVER_AS_PARA },
{ 'n', "banreal", stats_banreal, 0 },
{ 'n', "banrealname", stats_banrealname, 0 },
{ 'o', "oper", stats_oper, 0 },
{ 'q', "sqline", stats_sqline, 0 },
{ 'r', "chanrestrict", stats_chanrestrict, 0 },
@@ -1004,7 +1004,7 @@ int stats_kline(aClient *sptr, char *para)
return 0;
}
int stats_banreal(aClient *sptr, char *para)
int stats_banrealname(aClient *sptr, char *para)
{
ConfigItem_ban *bans;
for (bans = conf_ban; bans; bans = (ConfigItem_ban *)bans->next)