Skip to content

Commit

Permalink
Merge pull request #1614 from grawity/staple-fix-fix
Browse files Browse the repository at this point in the history
Fix build error in checking whether staple is enabled
  • Loading branch information
arr2036 committed May 20, 2016
2 parents a3ab643 + ebfcd9e commit db675c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/tls/ctx.c
Expand Up @@ -420,7 +420,7 @@ SSL_CTX *tls_ctx_alloc(fr_tls_conf_t const *conf, bool client)
/*
* Configure OCSP stapling for the server cert
*/
if (conf->staple->enable) {
if (conf->staple.enable) {
SSL_CTX_set_tlsext_status_cb(ctx, tls_ocsp_staple_cb);

{
Expand Down

0 comments on commit db675c2

Please sign in to comment.