From: Bodo Möller Date: Sat, 7 Aug 1999 02:45:31 +0000 (+0000) Subject: change formatting a bit X-Git-Tag: OpenSSL_0_9_4~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=991876241329a244e0d175bfc887fe66461760af;p=oweals%2Fopenssl.git change formatting a bit --- diff --git a/crypto/bio/bss_bio.c b/crypto/bio/bss_bio.c index 99c5cc6d0d..562e9d8de2 100644 --- a/crypto/bio/bss_bio.c +++ b/crypto/bio/bss_bio.c @@ -143,9 +143,9 @@ static int bio_read(BIO *bio, char *buf, int size_) if (size <= peer_b->size) peer_b->request = size; else - peer_b->request = peer_b->size; /* don't ask for more than - * the peer can deliver - * in one write */ + /* don't ask for more than the peer can + * deliver in one write */ + peer_b->request = peer_b->size; return -1; } } @@ -578,11 +578,11 @@ int BIO_new_bio_pair(BIO **bio1_p, size_t writebuf1, } size_t BIO_ctrl_get_write_guarantee(BIO *bio) - { + { return BIO_ctrl(bio, BIO_C_GET_WRITE_GUARANTEE, 0, NULL); } size_t BIO_ctrl_get_read_request(BIO *bio) - { + { return BIO_ctrl(bio, BIO_C_GET_READ_REQUEST, 0, NULL); }