From: Pierre Ossman Date: Fri, 24 May 2013 10:47:27 +0000 (+0000) Subject: Forgot to respect the AcceptClipboard option in the X-Git-Tag: v1.3.90~101 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5010488214d3df9fb6dc64484e479451dd3e5c41;p=tigervnc.git Forgot to respect the AcceptClipboard option in the new FLTK based viewer. Patch by Matt McCutchen. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5112 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/vncviewer/CConn.cxx b/vncviewer/CConn.cxx index 97e35ba0..4aeb03f1 100644 --- a/vncviewer/CConn.cxx +++ b/vncviewer/CConn.cxx @@ -350,6 +350,9 @@ void CConn::serverCutText(const char* str, rdr::U32 len) char *buffer; int size, ret; + if (!acceptClipboard) + return; + size = fl_utf8froma(NULL, 0, str, len); if (size <= 0) return;