aboutsummaryrefslogtreecommitdiffstats
path: root/demos/bio/client-arg.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/bio/client-arg.c')
-rw-r--r--demos/bio/client-arg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/demos/bio/client-arg.c b/demos/bio/client-arg.c
index f0cb9aba90..cca7a1ed06 100644
--- a/demos/bio/client-arg.c
+++ b/demos/bio/client-arg.c
@@ -60,6 +60,13 @@ int main(int argc, char **argv)
}
}
+ if (!SSL_CONF_CTX_finish(cctx))
+ {
+ fprintf(stderr, "Finish error\n");
+ ERR_print_errors_fp(stderr);
+ goto err;
+ }
+
/* We'd normally set some stuff like the verify paths and
* mode here because as things stand this will connect to
* any server whose certificate is signed by any CA.