diff options
| author | 2013-04-07 22:23:25 +0100 | |
|---|---|---|
| committer | 2013-04-11 23:08:03 +0100 | |
| commit | 5c29c53f651fb0c513a50c9396e08ba340a6d2bf (patch) | |
| tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/helperfuncs.cpp | |
| parent | Fix clang warning about IsOper() (diff) | |
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index a673c1b14..ee059e756 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -485,26 +485,6 @@ std::string InspIRCd::TimeString(time_t curtime) return std::string(ctime(&curtime),24); } -// You should only pass a single character to this. -void InspIRCd::AddExtBanChar(char c) -{ - std::string &tok = Config->data005; - std::string::size_type ebpos = tok.find(" EXTBAN=,"); - - if (ebpos == std::string::npos) - { - tok.append(" EXTBAN=,"); - tok.push_back(c); - } - else - { - ebpos += 9; - while (isalpha(tok[ebpos]) && tok[ebpos] < c) - ebpos++; - tok.insert(ebpos, 1, c); - } -} - std::string InspIRCd::GenRandomStr(int length, bool printable) { char* buf = new char[length]; |
