diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-17 15:14:37 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-17 15:14:37 +0000 |
commit | a65aa3fcd5e5c74f00a7f09aac2ac4d6f5129792 (patch) | |
tree | 34240c1ec0cb35739ff7adad1249b380eb74b8d8 | |
parent | d4ba4a1a3864debf0edb4024a82644866911a788 (diff) |
Yes, we know how to spell voluntary (and involuntary!) :<
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6583 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/cmd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_stats.cpp b/src/cmd_stats.cpp index 30f45be69..4032aa012 100644 --- a/src/cmd_stats.cpp +++ b/src/cmd_stats.cpp @@ -200,7 +200,7 @@ void DoStats(InspIRCd* ServerInstance, char statschar, userrec* user, string_lis results.push_back(sn+" 249 "+user->nick+" :Signals: "+ConvToStr(R.ru_nsignals)); results.push_back(sn+" 249 "+user->nick+" :Page faults: "+ConvToStr(R.ru_majflt)); results.push_back(sn+" 249 "+user->nick+" :Swaps: "+ConvToStr(R.ru_nswap)); - results.push_back(sn+" 249 "+user->nick+" :Context Switches: Volountary; "+ConvToStr(R.ru_nvcsw)+" Involountary; "+ConvToStr(R.ru_nivcsw)); + results.push_back(sn+" 249 "+user->nick+" :Context Switches: Voluntary; "+ConvToStr(R.ru_nvcsw)+" Involuntary; "+ConvToStr(R.ru_nivcsw)); timeval tv; char percent[30]; |