diff options
author | pdlan <pengdinglan@gmail.com> | 2022-09-03 05:53:33 -0400 |
---|---|---|
committer | pdlan <pengdinglan@gmail.com> | 2022-09-03 05:53:33 -0400 |
commit | 2e683a18339cc404b6685e9005c7ce0e1bff675c (patch) | |
tree | 8058a4933a733df0c94161b0afd87eca7ab12499 /vncviewer/OptionsDialog.cxx | |
parent | 33a37c8c7cb824e03729d5ccc5972816dfffd157 (diff) | |
download | tigervnc-2e683a18339cc404b6685e9005c7ce0e1bff675c.tar.gz tigervnc-2e683a18339cc404b6685e9005c7ce0e1bff675c.zip |
Fix missing RA2ne enabling in storeOptions()
Diffstat (limited to 'vncviewer/OptionsDialog.cxx')
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index 2a904dd8..7e913332 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -385,6 +385,7 @@ void OptionsDialog::storeOptions(void) if (authVncCheckbox->value()) { security.EnableSecType(secTypeVncAuth); #ifdef HAVE_NETTLE + security.EnableSecType(secTypeRA2ne); security.EnableSecType(secTypeRAne256); #endif } |