projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb2276a
)
Use signed type where -1 may be returned.
author
Bodo Möller
<bodo@openssl.org>
Fri, 3 Mar 2000 22:34:35 +0000
(22:34 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Fri, 3 Mar 2000 22:34:35 +0000
(22:34 +0000)
crypto/bio/bss_bio.c
patch
|
blob
|
history
diff --git
a/crypto/bio/bss_bio.c
b/crypto/bio/bss_bio.c
index 0d0f9356f7dabbd24f4bbd2273e5b9cf54b933b9..74902bb1d805c980d49a7788019646b37211722a 100644
(file)
--- a/
crypto/bio/bss_bio.c
+++ b/
crypto/bio/bss_bio.c
@@
-205,7
+205,7
@@
static int bio_read(BIO *bio, char *buf, int size_)
*/
/* WARNING: The non-copying interface is largely untested as of yet
* and may contain bugs. */
-static size_t bio_nread0(BIO *bio, char **buf)
+static s
s
ize_t bio_nread0(BIO *bio, char **buf)
{
struct bio_bio_st *b, *peer_b;
size_t num;
@@
-243,7
+243,7
@@
static size_t bio_nread0(BIO *bio, char **buf)
return num;
}
-static size_t bio_nread(BIO *bio, char **buf, size_t num)
+static s
s
ize_t bio_nread(BIO *bio, char **buf, size_t num)
{
struct bio_bio_st *b, *peer_b;
size_t available;