diff options
| author | 2009-10-03 01:52:59 +0000 | |
|---|---|---|
| committer | 2009-10-03 01:52:59 +0000 | |
| commit | de25d946733f774e3a5b53a58438a9c92af0acbe (patch) | |
| tree | 459ccc3b0c2423f1592afec4b458615968a1176d /src/stats.cpp | |
| parent | Fix routing for normal core commands like QUIT (diff) | |
| download | inspircd++-de25d946733f774e3a5b53a58438a9c92af0acbe.tar.gz inspircd++-de25d946733f774e3a5b53a58438a9c92af0acbe.tar.bz2 inspircd++-de25d946733f774e3a5b53a58438a9c92af0acbe.zip | |
Get rid of a bunch of memory-wasting C-style strings
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11796 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/stats.cpp')
| -rw-r--r-- | src/stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stats.cpp b/src/stats.cpp index b7b92d9a6..448d6deee 100644 --- a/src/stats.cpp +++ b/src/stats.cpp @@ -19,7 +19,7 @@ void InspIRCd::DoStats(char statschar, User* user, string_list &results) { std::string sn(this->Config->ServerName); - if (!user->HasPrivPermission("servers/auspex") && !strchr(this->Config->UserStats, statschar)) + if (!user->HasPrivPermission("servers/auspex") && Config->UserStats.find(statschar) == std::string::npos) { this->SNO->WriteToSnoMask('t', "%s '%c' denied for %s (%s@%s)", |
