diff options
Diffstat (limited to 'vdr-vdrmanager')
-rw-r--r-- | vdr-vdrmanager/sock.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vdr-vdrmanager/sock.cpp b/vdr-vdrmanager/sock.cpp index df07aa6..a5a029d 100644 --- a/vdr-vdrmanager/sock.cpp +++ b/vdr-vdrmanager/sock.cpp @@ -216,9 +216,10 @@ void cVdrmanagerClientSocket::Disconnect() { } bool cVdrmanagerClientSocket::PutLine(string line) { - // add line to write buffer + //TODO http://projects.vdr-developer.org/issues/790 string line2 = cHelpers::compress_string(line); isyslog("PutLine, line size is %s, with zlib it would be %s", line.size(), line2.size()); + // add line to write buffer writebuf += line; // data present? |