diff options
Diffstat (limited to 'server/connectionIGMP.c')
-rw-r--r-- | server/connectionIGMP.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/connectionIGMP.c b/server/connectionIGMP.c index ced2209..f2a34fc 100644 --- a/server/connectionIGMP.c +++ b/server/connectionIGMP.c @@ -66,8 +66,8 @@ bool cConnectionIGMP::Close() return cServerConnection::Close(); } -cString cConnectionIGMP::ToText() const +cString cConnectionIGMP::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; } |