summaryrefslogtreecommitdiff
path: root/src/lib/libtls/tls.c
diff options
context:
space:
mode:
authorderaadt <>2015-09-29 10:17:04 +0000
committerderaadt <>2015-09-29 10:17:04 +0000
commita5f8b1e3beaca544186a330e0f61427c67779c1f (patch)
treed99963def92619b0cb00b8ee8fb85839a7de5a64 /src/lib/libtls/tls.c
parentde844b83c11dcdd32e0d6d1bc81777bc60620c70 (diff)
downloadopenbsd-a5f8b1e3beaca544186a330e0f61427c67779c1f.tar.gz
openbsd-a5f8b1e3beaca544186a330e0f61427c67779c1f.tar.bz2
openbsd-a5f8b1e3beaca544186a330e0f61427c67779c1f.zip
clean some ugly intendation warts
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 }