diff options
| author | 2006-08-11 11:06:40 +0000 | |
|---|---|---|
| committer | 2006-08-11 11:06:40 +0000 | |
| commit | 312d49abb008dccf9871b663decaa1bacf18c20a (patch) | |
| tree | 5160e2aef34cfdfffa5d22eefc02c6921fc30ad3 /src/cmd_stats.cpp | |
| parent | Move ReadBuffer into InspIRCd class (diff) | |
Move all of the xline stuff into class XLineManager, make an instance of it in class InspIRCd and use it
(eliminates another extern)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4878 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_stats.cpp')
| -rw-r--r-- | src/cmd_stats.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cmd_stats.cpp b/src/cmd_stats.cpp index b3ae20a5e..8187f8812 100644 --- a/src/cmd_stats.cpp +++ b/src/cmd_stats.cpp @@ -115,27 +115,27 @@ void DoStats(InspIRCd* ServerInstance, char statschar, userrec* user, string_lis if (statschar == 'k') { - stats_k(user,results); + ServerInstance->XLines->stats_k(user,results); } if (statschar == 'g') { - stats_g(user,results); + ServerInstance->XLines->stats_g(user,results); } if (statschar == 'q') { - stats_q(user,results); + ServerInstance->XLines->stats_q(user,results); } if (statschar == 'Z') { - stats_z(user,results); + ServerInstance->XLines->stats_z(user,results); } if (statschar == 'e') { - stats_e(user,results); + ServerInstance->XLines->stats_e(user,results); } /* stats m (list number of times each command has been used, plus bytecount) */ |
