diff options
author | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:06:38 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:06:38 +0000 |
commit | 1d15e2d60a171a43c83e51a1343727701ac34f4b (patch) | |
tree | 01eebc9a1baf00ade1c7fe2495c16cd3abc08113 /unix | |
parent | b6eb3990a15e32e7d506ef713da51ca0305ef4a9 (diff) | |
download | tigervnc-1d15e2d60a171a43c83e51a1343727701ac34f4b.tar.gz tigervnc-1d15e2d60a171a43c83e51a1343727701ac34f4b.zip |
[Development] Implement Security class. This class will be used to create
CSecurity/SSecurity objects for authentication purposes.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4038 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix')
-rw-r--r-- | unix/vncviewer/vncviewer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/vncviewer/vncviewer.cxx b/unix/vncviewer/vncviewer.cxx index 720c8a16..80d65c55 100644 --- a/unix/vncviewer/vncviewer.cxx +++ b/unix/vncviewer/vncviewer.cxx @@ -58,7 +58,7 @@ IntParameter wmDecorationHeight("WMDecorationHeight", "Height of window " "manager decoration around a window", 24); StringParameter passwordFile("PasswordFile", "Password file for VNC authentication", ""); -AliasParameter rfbauth("passwd", "Alias for PasswordFile", &passwordFile); +AliasParameter passwd("passwd", "Alias for PasswordFile", &passwordFile); BoolParameter useLocalCursor("UseLocalCursor", "Render the mouse cursor locally", true); |