diff options
Diffstat (limited to 'src/libcharon/plugins')
-rw-r--r-- | src/libcharon/plugins/eap_tls/eap_tls.c | 4 | ||||
-rw-r--r-- | src/libcharon/plugins/eap_ttls/eap_ttls.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libcharon/plugins/eap_tls/eap_tls.c b/src/libcharon/plugins/eap_tls/eap_tls.c index e4f12d7f6..849f03875 100644 --- a/src/libcharon/plugins/eap_tls/eap_tls.c +++ b/src/libcharon/plugins/eap_tls/eap_tls.c @@ -433,8 +433,8 @@ static eap_tls_t *eap_tls_create(identification_t *server, .is_server = is_server, ); /* MSK PRF ASCII constant label according to EAP-TLS RFC 5216 */ - this->tls = tls_create(is_server, server, peer, "client EAP encryption", - NULL); + this->tls = tls_create(is_server, server, peer, TRUE, + "client EAP encryption", NULL); return &this->public; } diff --git a/src/libcharon/plugins/eap_ttls/eap_ttls.c b/src/libcharon/plugins/eap_ttls/eap_ttls.c index 56713c302..dd24f401a 100644 --- a/src/libcharon/plugins/eap_ttls/eap_ttls.c +++ b/src/libcharon/plugins/eap_ttls/eap_ttls.c @@ -441,8 +441,8 @@ static eap_ttls_t *eap_ttls_create(identification_t *server, .is_server = is_server, ); /* MSK PRF ASCII constant label according to EAP-TTLS RFC 5281 */ - this->tls = tls_create(is_server, server, peer, "ttls keying material", - application); + this->tls = tls_create(is_server, server, peer, FALSE, + "ttls keying material", application); return &this->public; } |