mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r19217: Merge from SAMBA_4_0_RELEASE:
Re-enable TLS in the default configuration. We passed on the build farm because we have an explicit diffie-hilliman parameters file set. Andrew Bartlett
This commit is contained in:
parent
a4aafe307d
commit
d20ab6a5ed
@ -417,12 +417,13 @@ struct tls_params *tls_initialise(TALLOC_CTX *mem_ctx)
|
||||
ret = gnutls_dh_params_init(¶ms->dh_params);
|
||||
if (ret < 0) goto init_failed;
|
||||
|
||||
if (dhpfile) {
|
||||
if (dhpfile && *dhpfile) {
|
||||
gnutls_datum_t dhparms;
|
||||
size_t size;
|
||||
dhparms.data = (uint8_t *)file_load(dhpfile, &size, mem_ctx);
|
||||
|
||||
if (!dhparms.data) {
|
||||
DEBUG(0,("Failed to read DH Parms from %s\n", dhpfile));
|
||||
goto init_failed;
|
||||
}
|
||||
dhparms.size = size;
|
||||
|
Loading…
Reference in New Issue
Block a user