]> source.dussan.org Git - tigervnc.git/commitdiff
Add missing comma in default security type list
authorPierre Ossman <ossman@cendio.se>
Mon, 29 Jul 2024 14:16:08 +0000 (16:16 +0200)
committerLinn Mattsson <linma@cendio.se>
Fri, 18 Oct 2024 09:03:47 +0000 (11:03 +0200)
Otherwise it merges with the next entry, removing both of them from the
default list.

(cherry picked from commit 4f6a3521874da5a67fd746389cfa9b6199eb3582)

common/rfb/SecurityClient.cxx

index 1350640d079b74d2a56f0bbc0393e3ac0afd713f..c5808ab311bec87441896ba1c0e4906c94c4a451 100644 (file)
@@ -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);