aboutsummaryrefslogtreecommitdiffstats
path: root/win/vncviewer
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2010-04-23 14:16:04 +0000
committerAdam Tkac <atkac@redhat.com>2010-04-23 14:16:04 +0000
commitb10489b03966ce86ae091156ba6f021bc5d93377 (patch)
treec18b92163091de40a695b30f3ef58ab67296219b /win/vncviewer
parentdfe19cfff8deed3adbf0b4190763bbd243e56d07 (diff)
downloadtigervnc-b10489b03966ce86ae091156ba6f021bc5d93377.tar.gz
tigervnc-b10489b03966ce86ae091156ba6f021bc5d93377.zip
[Development] Implement VeNCrypt type support on client side. Currently only
TLSNone and TLSVnc VeNCrypt subtypes are implemented. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4046 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncviewer')
-rw-r--r--win/vncviewer/CConn.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/vncviewer/CConn.cxx b/win/vncviewer/CConn.cxx
index 97ef5201..2e0c3a41 100644
--- a/win/vncviewer/CConn.cxx
+++ b/win/vncviewer/CConn.cxx
@@ -102,7 +102,7 @@ bool CConn::initialise(network::Socket* s, bool reverse) {
// - Set which auth schemes we support, in order of preference
addSecType(secTypeVncAuth);
addSecType(secTypeNone);
- security->upg = this; /* Security instance is created in CConnection costructor. */
+ CSecurity::upg = this;
// Start the RFB protocol
sock = s;