]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Set variables to NULL. Fix oprfi variable.
authorSimon Josefsson <simon@josefsson.org>
Thu, 20 Sep 2007 14:14:02 +0000 (16:14 +0200)
committerSimon Josefsson <simon@josefsson.org>
Thu, 20 Sep 2007 14:14:02 +0000 (16:14 +0200)
src/serv.gaa

index ece8c614f57684791ca101e70ce017b217f7feaf..4bacca651cebd7ca834f9ecaec80e8e741d660b4 100644 (file)
@@ -86,7 +86,7 @@ option (authz-x509-attr-cert) STR "FILE" { $authz_x509_attr_cert = $1 } "Use X.5
 option (authz-saml-assertion) STR "FILE" { $authz_saml_assertion = $1 } "Use SAML Assertion in FILE as authorization data."
 
 #char *opaque_prf_input;
-option (opaque_prf_input) STR "DATA" { $opaque_prf_input = $1 } "Use Opaque PRF Input DATA."
+option (opaque-prf-input) STR "DATA" { $opaque_prf_input = $1 } "Use Opaque PRF Input DATA."
 
 #int nciphers;
 #char **ciphers;
@@ -127,7 +127,8 @@ init { $generate=0; $port=5556; $http=0; $ciphers=NULL;
        $x509_keyfile=NULL; $x509_certfile=NULL; $x509_crlfile = NULL;
        $x509_dsakeyfile=NULL; $x509_dsacertfile=NULL; 
        $srp_passwd=NULL; $srp_passwd_conf=NULL; $quiet = 0;
-       $pgp_trustdb=NULL; $pgp_keyring=NULL; $fmtder = 0; $disable_client_cert = 0;
-       $dh_params_file=NULL; $debug=0; $require_cert = 0; $psk_passwd = 0; }
-
-
+       $pgp_trustdb=NULL; $pgp_keyring=NULL; $fmtder = 0;
+       $disable_client_cert = 0;
+       $dh_params_file=NULL; $debug=0; $require_cert = 0; $psk_passwd = 0;
+       $authz_x509_attr_cert = NULL; $authz_saml_assertion = NULL;
+       $opaque_prf_input=NULL; }