diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-04-11 15:11:31 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-04-11 15:11:31 -0700 |
commit | 1858feabd342636df0b52780c978979b4e049fc3 (patch) | |
tree | c00ab92b6ff6d002e6c40909587b146ba5e45612 /src/helperfuncs.cpp | |
parent | 295b3e7ba15a228948358bd6f23591a9cb5bf5a8 (diff) | |
parent | 5c29c53f651fb0c513a50c9396e08ba340a6d2bf (diff) |
Merge pull request #487 from SaberUK/master+better-isupport-api
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]; |