diff options
| author | 2013-05-18 11:31:25 -0700 | |
|---|---|---|
| committer | 2013-05-18 14:01:21 -0700 | |
| commit | 42ae4790815734dca6357d3b69f2aca604316aa3 (patch) | |
| tree | 3e95c0c32a43ce6756269888fc02f2df7307bba0 /src/helperfuncs.cpp | |
| parent | Change the signature of User::ForceNickChange() to accept const std::string& ... (diff) | |
Added macro to allow simpler logic in functions with the need to vsnprintf
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index d11a13aa0..c097b0033 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -424,19 +424,22 @@ unsigned long InspIRCd::Duration(const std::string &str) return total + subtotal; } -const char* InspIRCd::Format(const char* formatString, ...) +const char* InspIRCd::Format(const va_list &vaList, const char* formatString) { static std::vector<char> formatBuffer(1024); int vsnret = 0; - - va_list vaList; - va_start(vaList, formatString); while ((vsnret = vsnprintf(&formatBuffer[0], formatBuffer.size(), formatString, vaList)) < 0 || static_cast<unsigned int>(vsnret) >= formatBuffer.size()) formatBuffer.resize(formatBuffer.size() * 2); - va_end(vaList); return &formatBuffer[0]; } +const char* InspIRCd::Format(const char* formatString, ...) +{ + const char* ret; + VAFORMAT(ret, formatString, formatString); + return ret; +} + bool InspIRCd::ULine(const std::string& sserver) { if (sserver.empty()) |
