From: Alan T. DeKok Date: Sun, 9 Oct 2011 11:59:34 +0000 (+0200) Subject: TLS private key password isn't required X-Git-Tag: release_3_0_0_beta0~606 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cb4bec7f275ef65c8d0e18a697c4b314e762dfe;p=thirdparty%2Ffreeradius-server.git TLS private key password isn't required --- diff --git a/src/main/tls.c b/src/main/tls.c index 857592737c3..f6429e0a116 100644 --- a/src/main/tls.c +++ b/src/main/tls.c @@ -1906,11 +1906,6 @@ fr_tls_server_conf_t *tls_server_conf_parse(CONF_SECTION *cs) goto error; } - if (!conf->private_key_password) { - radlog(L_ERR, "TLS Server requires a private key password"); - goto error; - } - if (!conf->certificate_file) { radlog(L_ERR, "TLS Server requires a certificate file"); goto error;