summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-09-20 16:14:02 +0200
committerSimon Josefsson <simon@josefsson.org>2007-09-20 16:14:02 +0200
commit57f0cbfdc4233fbb7ff62e2cb60455f3d46fe6a5 (patch)
tree508df61d2ea209b20be2787d4ef2e9c69e44d3f9
parent06a651de574771b550347fe7728db55624a74ee4 (diff)
downloadgnutls-57f0cbfdc4233fbb7ff62e2cb60455f3d46fe6a5.tar.gz
Set variables to NULL. Fix oprfi variable.
-rw-r--r--src/serv.gaa11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/serv.gaa b/src/serv.gaa
index ece8c614f5..4bacca651c 100644
--- a/src/serv.gaa
+++ b/src/serv.gaa
@@ -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; }