瀏覽代碼

[Bugfix] Return also "standard" security types (except VeNCrypt type) as

VeNCrypt subtypes. This is same behavior as original VeNCrypt implementation.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4121 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.0.90
Adam Tkac 14 年之前
父節點
當前提交
95e2fe8758
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      common/rfb/Security.cxx

+ 1
- 1
common/rfb/Security.cxx 查看文件

@@ -84,7 +84,7 @@ const std::list<rdr::U32> Security::GetEnabledExtSecTypes(void)
list<U32>::iterator i;

for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++)
if (*i >= 0x100)
if (*i != secTypeVeNCrypt) /* Do not include VeNCrypt type to avoid loops */
result.push_back(*i);

return result;

Loading…
取消
儲存