From: Pierre Ossman Date: Mon, 29 Jul 2024 14:16:08 +0000 (+0200) Subject: Add missing comma in default security type list X-Git-Tag: v1.14.1~23 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2464b5f47e8e89630696c2630521922516fd854c;p=tigervnc.git Add missing comma in default security type list Otherwise it merges with the next entry, removing both of them from the default list. (cherry picked from commit 4f6a3521874da5a67fd746389cfa9b6199eb3582) --- diff --git a/common/rfb/SecurityClient.cxx b/common/rfb/SecurityClient.cxx index 1350640d..c5808ab3 100644 --- a/common/rfb/SecurityClient.cxx +++ b/common/rfb/SecurityClient.cxx @@ -60,7 +60,7 @@ StringParameter SecurityClient::secTypes "X509Plain,TLSPlain,X509Vnc,TLSVnc,X509None,TLSNone," #endif #ifdef HAVE_NETTLE - "RA2,RA2_256,RA2ne,RA2ne_256,DH,MSLogonII" + "RA2,RA2_256,RA2ne,RA2ne_256,DH,MSLogonII," #endif "VncAuth,None", ConfViewer);