diff options
author | 2020-08-09 16:54:16 +0000 | |
---|---|---|
committer | 2020-08-09 16:54:16 +0000 | |
commit | 821d9f84a14db3ee535d262d23f1f7d138efd928 (patch) | |
tree | 20173d15ada2b7ffbdc2273f35020ffd6c23dc52 /lib/libssl/ssl_pkt.c | |
parent | Convert openssl req option handling. (diff) | |
download | wireguard-openbsd-821d9f84a14db3ee535d262d23f1f7d138efd928.tar.xz wireguard-openbsd-821d9f84a14db3ee535d262d23f1f7d138efd928.zip |
Fix some wrapping/indent.
Diffstat (limited to 'lib/libssl/ssl_pkt.c')
-rw-r--r-- | lib/libssl/ssl_pkt.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libssl/ssl_pkt.c b/lib/libssl/ssl_pkt.c index da059915f20..5c9b3be2ff0 100644 --- a/lib/libssl/ssl_pkt.c +++ b/lib/libssl/ssl_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_pkt.c,v 1.29 2020/08/09 16:02:58 jsing Exp $ */ +/* $OpenBSD: ssl_pkt.c,v 1.30 2020/08/09 16:54:16 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -836,9 +836,8 @@ ssl3_write_pending(SSL *s, int type, const unsigned char *buf, unsigned int len) errno = 0; if (s->wbio != NULL) { s->internal->rwstate = SSL_WRITING; - i = BIO_write(s->wbio, - (char *)&(wb->buf[wb->offset]), - (unsigned int)wb->left); + i = BIO_write(s->wbio, (char *)&(wb->buf[wb->offset]), + (unsigned int)wb->left); } else { SSLerror(s, SSL_R_BIO_NOT_SET); i = -1; |