Encrypt default to 'false' in vnc_auto.html also.

This commit is contained in:
Joel Martin 2010-09-07 09:57:37 -05:00
parent b8bd88d085
commit 673118fb21
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ Connect parameters are provided in query string:
return;
}
rfb = new RFB({'encrypt': Util.getQueryVar('encrypt', true),
rfb = new RFB({'encrypt': Util.getQueryVar('encrypt', false),
'true_color': Util.getQueryVar('true_color', true),
'local_cursor': Util.getQueryVar('cursor', true),
'updateState': updateState});