diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-01 22:52:02 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-01 22:52:02 +0200 |
commit | dac63207aac2ed05603aaa7691421b6bbfc5dc35 (patch) | |
tree | 45fac7ba54eb9190ab4991b9884d0f05307a0b0b /src/commands | |
parent | a15d4c391bfd4ffed1e8552636be821784df0ac4 (diff) |
Remove (non-functional) total_bytes counter from Command
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/cmd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_stats.cpp b/src/commands/cmd_stats.cpp index 692b0d2ec..3145940be 100644 --- a/src/commands/cmd_stats.cpp +++ b/src/commands/cmd_stats.cpp @@ -205,7 +205,7 @@ void CommandStats::DoStats(char statschar, User* user, string_list &results) if (i->second->use_count) { /* RPL_STATSCOMMANDS */ - results.push_back(sn+" 212 "+user->nick+" "+i->second->name+" "+ConvToStr(i->second->use_count)+" "+ConvToStr(i->second->total_bytes)); + results.push_back(sn+" 212 "+user->nick+" "+i->second->name+" "+ConvToStr(i->second->use_count)); } } break; |