]> source.dussan.org Git - tigervnc.git/commitdiff
Printing the clipboard data is very annoying as it could
authorPierre Ossman <ossman@cendio.se>
Thu, 5 Sep 2013 14:25:40 +0000 (14:25 +0000)
committerPierre Ossman <ossman@cendio.se>
Thu, 5 Sep 2013 14:25:40 +0000 (14:25 +0000)
include line breaks, things with the wrong character encoding
and god knows what. Just print the size of the data instead.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5133 3789f03b-4d11-0410-bbf8-ca57d06f2519

vncviewer/CConn.cxx
vncviewer/Viewport.cxx

index 4aeb03f1d4d8c809b60eaaac58e2781b42489736..f97b0f4c1714efcdc668734cfe46288252201463 100644 (file)
@@ -364,7 +364,7 @@ void CConn::serverCutText(const char* str, rdr::U32 len)
   ret = fl_utf8froma(buffer, size, str, len);
   assert(ret < size);
 
-  vlog.debug("Got clipboard data: '%s'", buffer);
+  vlog.debug("Got clipboard data (%d bytes)", strlen(buffer));
 
   // RFB doesn't have separate selection and clipboard concepts, so we
   // dump the data into both variants.
index 9fd849f830881acd22442f7d9481e227732e2da3..4b8a85b04eeb247b6a1810bc6be6088b05116efe 100644 (file)
@@ -365,7 +365,7 @@ int Viewport::handle(int event)
                      Fl::event_length() + 1);
     assert(ret < (Fl::event_length() + 1));
 
-    vlog.debug("Sending clipboard data: '%s'", buffer);
+    vlog.debug("Sending clipboard data (%d bytes)", strlen(buffer));
 
     try {
       cc->writer()->clientCutText(buffer, ret);