summaryrefslogtreecommitdiff
path: root/src/lib/libtls/tls.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libtls/tls.c')
-rw-r--r--src/lib/libtls/tls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libtls/tls.c b/src/lib/libtls/tls.c
index ac9262a4fc..f841271754 100644
--- a/src/lib/libtls/tls.c
+++ b/src/lib/libtls/tls.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls.c,v 1.32 2015/09/14 16:16:38 jsing Exp $ */ 1/* $OpenBSD: tls.c,v 1.33 2015/09/29 10:17:04 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -285,7 +285,7 @@ tls_configure_ssl_verify(struct tls *ctx, int verify)
285 goto err; 285 goto err;
286 } 286 }
287 } else if (SSL_CTX_load_verify_locations(ctx->ssl_ctx, 287 } else if (SSL_CTX_load_verify_locations(ctx->ssl_ctx,
288 ctx->config->ca_file, ctx->config->ca_path) != 1) { 288 ctx->config->ca_file, ctx->config->ca_path) != 1) {
289 tls_set_errorx(ctx, "ssl verify setup failure"); 289 tls_set_errorx(ctx, "ssl verify setup failure");
290 goto err; 290 goto err;
291 } 291 }