diff options
Diffstat (limited to 'server/connectionHTTP.c')
-rw-r--r-- | server/connectionHTTP.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/connectionHTTP.c b/server/connectionHTTP.c index bec9bef..922bd04 100644 --- a/server/connectionHTTP.c +++ b/server/connectionHTTP.c @@ -649,8 +649,8 @@ bool cConnectionHTTP::ProcessURI(const std::string& PathInfo) return false; } -cString cConnectionHTTP::ToText() const +cString cConnectionHTTP::ToText(char Delimiter) const { - cString str = cServerConnection::ToText(); - return Streamer() ? cString::sprintf("%s\t%s", *str, *Streamer()->ToText()) : str; + cString str = cServerConnection::ToText(Delimiter); + return Streamer() ? cString::sprintf("%s%c%s", *str, Delimiter, *Streamer()->ToText()) : str; } |