diff options
author | 2015-09-29 10:17:04 +0000 | |
---|---|---|
committer | 2015-09-29 10:17:04 +0000 | |
commit | 810e306d0a66712b68fbd101fbc7d75dfd5b42bb (patch) | |
tree | 566ae849973eb07ff578402ab8ad9f4dae2a46fe /lib/libtls/tls.c | |
parent | add sizes to some of the simpler free calls (diff) | |
download | wireguard-openbsd-810e306d0a66712b68fbd101fbc7d75dfd5b42bb.tar.xz wireguard-openbsd-810e306d0a66712b68fbd101fbc7d75dfd5b42bb.zip |
clean some ugly intendation warts
Diffstat (limited to 'lib/libtls/tls.c')
-rw-r--r-- | lib/libtls/tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtls/tls.c b/lib/libtls/tls.c index ac9262a4fcb..f8412717544 100644 --- a/lib/libtls/tls.c +++ b/lib/libtls/tls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls.c,v 1.32 2015/09/14 16:16:38 jsing Exp $ */ +/* $OpenBSD: tls.c,v 1.33 2015/09/29 10:17:04 deraadt Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -285,7 +285,7 @@ tls_configure_ssl_verify(struct tls *ctx, int verify) goto err; } } else if (SSL_CTX_load_verify_locations(ctx->ssl_ctx, - ctx->config->ca_file, ctx->config->ca_path) != 1) { + ctx->config->ca_file, ctx->config->ca_path) != 1) { tls_set_errorx(ctx, "ssl verify setup failure"); goto err; } |