diff options
author | jsing <> | 2017-06-22 17:58:54 +0000 |
---|---|---|
committer | jsing <> | 2017-06-22 17:58:54 +0000 |
commit | 76ff5fe336f69e4da4140cc2ea4324229e3fc762 (patch) | |
tree | ddbaed505b07b4b6ef91cf200dd19fdee25e1224 /src | |
parent | 0a0b8616727dbc53a49279b3ee5daf316641b943 (diff) | |
download | openbsd-76ff5fe336f69e4da4140cc2ea4324229e3fc762.tar.gz openbsd-76ff5fe336f69e4da4140cc2ea4324229e3fc762.tar.bz2 openbsd-76ff5fe336f69e4da4140cc2ea4324229e3fc762.zip |
Fix incorrect indentation.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libtls/tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libtls/tls.c b/src/lib/libtls/tls.c index e6135aedef..b75fae7f2b 100644 --- a/src/lib/libtls/tls.c +++ b/src/lib/libtls/tls.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls.c,v 1.65 2017/06/22 17:55:48 jsing Exp $ */ | 1 | /* $OpenBSD: tls.c,v 1.66 2017/06/22 17:58:54 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -640,7 +640,7 @@ tls_handshake(struct tls *ctx) | |||
640 | ctx->ssl_peer_cert = SSL_get_peer_certificate(ctx->ssl_conn); | 640 | ctx->ssl_peer_cert = SSL_get_peer_certificate(ctx->ssl_conn); |
641 | ctx->ssl_peer_chain = SSL_get_peer_cert_chain(ctx->ssl_conn); | 641 | ctx->ssl_peer_chain = SSL_get_peer_cert_chain(ctx->ssl_conn); |
642 | if (tls_conninfo_populate(ctx) == -1) | 642 | if (tls_conninfo_populate(ctx) == -1) |
643 | rv = -1; | 643 | rv = -1; |
644 | if (ctx->ocsp == NULL) | 644 | if (ctx->ocsp == NULL) |
645 | ctx->ocsp = tls_ocsp_setup_from_peer(ctx); | 645 | ctx->ocsp = tls_ocsp_setup_from_peer(ctx); |
646 | } | 646 | } |