Correct naming convention for some parameters
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx
index e21f2dd..b9752aa 100644
--- a/vncviewer/OptionsDialog.cxx
+++ b/vncviewer/OptionsDialog.cxx
@@ -252,8 +252,8 @@
}
}
- caInput->value(CSecurityTLS::x509ca);
- crlInput->value(CSecurityTLS::x509crl);
+ caInput->value(CSecurityTLS::X509CA);
+ crlInput->value(CSecurityTLS::X509CRL);
handleX509(encX509Checkbox, this);
#endif
@@ -368,8 +368,8 @@
SecurityClient::secTypes.setParam(security.ToString());
- CSecurityTLS::x509ca.setParam(caInput->value());
- CSecurityTLS::x509crl.setParam(crlInput->value());
+ CSecurityTLS::X509CA.setParam(caInput->value());
+ CSecurityTLS::X509CRL.setParam(crlInput->value());
#endif
/* Input */
diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx
index 68ddee1..b7b33b5 100644
--- a/vncviewer/parameters.cxx
+++ b/vncviewer/parameters.cxx
@@ -144,8 +144,8 @@
VoidParameter* parameterArray[] = {
#ifdef HAVE_GNUTLS
- &CSecurityTLS::x509ca,
- &CSecurityTLS::x509crl,
+ &CSecurityTLS::X509CA,
+ &CSecurityTLS::X509CRL,
#endif // HAVE_GNUTLS
&SecurityClient::secTypes,
&dotWhenNoCursor,