summaryrefslogtreecommitdiffstats
path: root/win/vncconfig
diff options
context:
space:
mode:
Diffstat (limited to 'win/vncconfig')
-rw-r--r--win/vncconfig/Authentication.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/vncconfig/Authentication.h b/win/vncconfig/Authentication.h
index cae97190..90bf08c3 100644
--- a/win/vncconfig/Authentication.h
+++ b/win/vncconfig/Authentication.h
@@ -40,11 +40,11 @@ namespace rfb {
AuthenticationPage(const RegKey& rk)
: PropSheetPage(GetModuleHandle(0), MAKEINTRESOURCE(IDD_AUTHENTICATION)), regKey(rk) {}
void initDialog() {
- CharArray sec_types_str(Security::secTypes.getData());
- std::list<rdr::U8> sec_types = parseSecTypes(sec_types_str.buf);
+ CharArray sec_types_str(Security::secTypesServer.getData());
+ std::list<rdr::U32> sec_types = parseSecTypes(sec_types_str.buf);
useNone = useVNC = false;
- std::list<rdr::U8>::iterator i;
+ std::list<rdr::U32>::iterator i;
for (i=sec_types.begin(); i!=sec_types.end(); i++) {
if ((*i) == secTypeNone) useNone = true;
else if ((*i) == secTypeVncAuth) useVNC = true;