diff options
author | doug <> | 2015-06-13 08:38:10 +0000 |
---|---|---|
committer | doug <> | 2015-06-13 08:38:10 +0000 |
commit | a3f6270cf947329be3b9091ddfdbab704042addd (patch) | |
tree | d662b590881eb66fb307e6d2ac19b7a15cc092ba /src/lib/libssl/d1_srvr.c | |
parent | da86a9658c227bfdb16fc46762295a922d8ffaff (diff) | |
download | openbsd-a3f6270cf947329be3b9091ddfdbab704042addd.tar.gz openbsd-a3f6270cf947329be3b9091ddfdbab704042addd.tar.bz2 openbsd-a3f6270cf947329be3b9091ddfdbab704042addd.zip |
Fix bad indenting in LibreSSL.
jsg@ noticed that some of the lines in libssl and libcrypto are not
indented properly. At a quick glance, it looks like it has a different
control flow than it really does. I checked the history in our tree and
in OpenSSL to make sure these were simple mistakes.
ok miod@ jsing@
Diffstat (limited to 'src/lib/libssl/d1_srvr.c')
-rw-r--r-- | src/lib/libssl/d1_srvr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/d1_srvr.c b/src/lib/libssl/d1_srvr.c index 27f350fcb6..bd3a8e1a42 100644 --- a/src/lib/libssl/d1_srvr.c +++ b/src/lib/libssl/d1_srvr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_srvr.c,v 1.51 2015/05/15 11:00:14 jsg Exp $ */ | 1 | /* $OpenBSD: d1_srvr.c,v 1.52 2015/06/13 08:38:10 doug Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -525,7 +525,7 @@ dtls1_accept(SSL *s) | |||
525 | ret = ssl3_get_cert_verify(s); | 525 | ret = ssl3_get_cert_verify(s); |
526 | if (ret <= 0) | 526 | if (ret <= 0) |
527 | goto end; | 527 | goto end; |
528 | s->state = SSL3_ST_SR_FINISHED_A; | 528 | s->state = SSL3_ST_SR_FINISHED_A; |
529 | s->init_num = 0; | 529 | s->init_num = 0; |
530 | break; | 530 | break; |
531 | 531 | ||