summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_bio.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-08-07 02:45:31 +0000
committerBodo Möller <bodo@openssl.org>1999-08-07 02:45:31 +0000
commit991876241329a244e0d175bfc887fe66461760af (patch)
treef994e3bbaff432d21630785b1f2d0c93185809bf /crypto/bio/bss_bio.c
parented7f60fbf91915df618bddff59ec86a3466e79ac (diff)
change formatting a bit
Diffstat (limited to 'crypto/bio/bss_bio.c')
-rw-r--r--crypto/bio/bss_bio.c10
1 files changed, 5 insertions, 5 deletions
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);
}