summaryrefslogtreecommitdiffstats
path: root/apps/s_cb.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-10-18 16:09:12 +0100
committerDr. Stephen Henson <steve@openssl.org>2013-10-20 22:07:36 +0100
commitec2f7e568ea18a22ab57326fffe78ef2aa6884f5 (patch)
tree61a95e3c1401acd1be7d428c6e8783ac7b82964c /apps/s_cb.c
parent13af1451595b514524b0efc17f99f6392ce090d5 (diff)
Extend SSL_CONF
Extend SSL_CONF to return command value types. Add certificate and key options. Update documentation.
Diffstat (limited to 'apps/s_cb.c')
-rw-r--r--apps/s_cb.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index b1102ceed6..083956916c 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -1685,6 +1685,12 @@ int args_ssl_call(SSL_CTX *ctx, BIO *err, SSL_CONF_CTX *cctx,
}
}
#endif
+ if (!SSL_CONF_CTX_finish(cctx))
+ {
+ BIO_puts(err, "Error finishing context\n");
+ ERR_print_errors(err);
+ return 0;
+ }
return 1;
}