From 9464932676adc8129796f1c981d96859bbb6123b Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Mon, 16 Nov 2015 12:32:41 +0100 Subject: [PATCH] tls: field for server_id in default init of tls_domain_t structures --- modules/tls/tls_mod.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/tls/tls_mod.c b/modules/tls/tls_mod.c index 2d085d031e9..c4478b28333 100644 --- a/modules/tls/tls_mod.c +++ b/modules/tls/tls_mod.c @@ -101,6 +101,7 @@ static tls_domain_t mod_params = { TLS_USE_TLSv1, /* TLS method */ STR_STATIC_INIT(TLS_CRL_FILE), /* Certificate revocation list */ {0, 0}, /* Server name (SNI) */ + {0, 0}, /* Server id */ 0 /* next */ }; @@ -123,6 +124,7 @@ tls_domain_t srv_defaults = { TLS_USE_TLSv1, /* TLS method */ STR_STATIC_INIT(TLS_CRL_FILE), /* Certificate revocation list */ {0, 0}, /* Server name (SNI) */ + {0, 0}, /* Server id */ 0 /* next */ }; @@ -145,6 +147,7 @@ tls_domain_t cli_defaults = { TLS_USE_TLSv1, /* TLS method */ {0, 0}, /* Certificate revocation list */ {0, 0}, /* Server name (SNI) */ + {0, 0}, /* Server id */ 0 /* next */ };