diff options
author | Adam Tkac <atkac@redhat.com> | 2010-08-12 14:17:28 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-08-12 14:17:28 +0000 |
commit | fb993153a026e5bfa3e7f87a34ca7155aea555d3 (patch) | |
tree | 615bb6d44ffb99579ecc09d40d8905d7b5f66c6e /common/rfb/SConnection.cxx | |
parent | 95e2fe875860954c17a98920537e4d40b0805c9e (diff) | |
download | tigervnc-fb993153a026e5bfa3e7f87a34ca7155aea555d3.tar.gz tigervnc-fb993153a026e5bfa3e7f87a34ca7155aea555d3.zip |
[Development] Extend Security class to allow different default sectypes for server/viewer.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4122 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/SConnection.cxx')
-rw-r--r-- | common/rfb/SConnection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/SConnection.cxx b/common/rfb/SConnection.cxx index 0e6ded52..87db2001 100644 --- a/common/rfb/SConnection.cxx +++ b/common/rfb/SConnection.cxx @@ -55,7 +55,7 @@ SConnection::SConnection(bool reverseConnection_) cp.setVersion(defaultMajorVersion, defaultMinorVersion); - security = new Security(); + security = new Security(SecurityServer); } SConnection::~SConnection() |