[Bugfix] Fix vncconfig.exe compilation (broken since r4123).
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4132 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/win/vncconfig/Authentication.h b/win/vncconfig/Authentication.h
index cae9719..90bf08c 100644
--- a/win/vncconfig/Authentication.h
+++ b/win/vncconfig/Authentication.h
@@ -40,11 +40,11 @@
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;