summaryrefslogtreecommitdiff
path: root/server/connectionVTP.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/connectionVTP.c')
-rw-r--r--server/connectionVTP.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/connectionVTP.c b/server/connectionVTP.c
index 698d33c..05c49ee 100644
--- a/server/connectionVTP.c
+++ b/server/connectionVTP.c
@@ -1836,13 +1836,13 @@ bool cConnectionVTP::Respond(int Code, const char *Message, ...)
Code < 0 ? '-' : ' ', *str);
}
-cString cConnectionVTP::ToText() const
+cString cConnectionVTP::ToText(char Delimiter) const
{
- cString str = cServerConnection::ToText();
+ cString str = cServerConnection::ToText(Delimiter);
if (Streamer())
- return cString::sprintf("%s\t%s", *str, *Streamer()->ToText());
+ return cString::sprintf("%s%c%s", *str, Delimiter, *Streamer()->ToText());
else if (m_RecPlayer)
- return cString::sprintf("%s\t%s", *str, m_RecPlayer->getCurrentRecording()->Name());
+ return cString::sprintf("%s%c%s", *str, Delimiter, m_RecPlayer->getCurrentRecording()->Name());
else
return str;
}