summaryrefslogtreecommitdiffstats
path: root/lib/libtls/tls_client.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2015-09-29 10:17:04 +0000
committerderaadt <deraadt@openbsd.org>2015-09-29 10:17:04 +0000
commit810e306d0a66712b68fbd101fbc7d75dfd5b42bb (patch)
tree566ae849973eb07ff578402ab8ad9f4dae2a46fe /lib/libtls/tls_client.c
parentadd sizes to some of the simpler free calls (diff)
downloadwireguard-openbsd-810e306d0a66712b68fbd101fbc7d75dfd5b42bb.tar.xz
wireguard-openbsd-810e306d0a66712b68fbd101fbc7d75dfd5b42bb.zip
clean some ugly intendation warts
Diffstat (limited to 'lib/libtls/tls_client.c')
-rw-r--r--lib/libtls/tls_client.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libtls/tls_client.c b/lib/libtls/tls_client.c
index 047831e59f8..cea01d17fec 100644
--- a/lib/libtls/tls_client.c
+++ b/lib/libtls/tls_client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls_client.c,v 1.28 2015/09/12 19:54:31 jsing Exp $ */
+/* $OpenBSD: tls_client.c,v 1.29 2015/09/29 10:17:04 deraadt Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
*
@@ -166,7 +166,10 @@ int
tls_connect_fds(struct tls *ctx, int fd_read, int fd_write,
const char *servername)
{
- union { struct in_addr ip4; struct in6_addr ip6; } addrbuf;
+ union {
+ struct in_addr ip4;
+ struct in6_addr ip6;
+ } addrbuf;
int rv = -1;
if ((ctx->flags & TLS_CLIENT) == 0) {