summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-09-04 15:47:17 +0000
committerBodo Möller <bodo@openssl.org>2000-09-04 15:47:17 +0000
commitaffadbef0b88dac4c33d5ecdc0f431f2a3ffbec5 (patch)
treee89e03f7687607ba46ba9763a2430797f1a879a6 /crypto/bio
parent397bd0938aa724cccf4f97eb73f8d8f403670329 (diff)
Consistency
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/b_print.c2
-rw-r--r--crypto/bio/bf_buff.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c
index 349109b213..c421934def 100644
--- a/crypto/bio/b_print.c
+++ b/crypto/bio/b_print.c
@@ -827,7 +827,7 @@ int BIO_vprintf (BIO *bio, const char *format, va_list args)
#ifdef USE_ALLOCATING_PRINT
char *hugebuf;
#else
- MS_STATIC char hugebuf[1024*2]; /* 10k in one chunk is the limit */
+ MS_STATIC char hugebuf[1024*2];
#endif
#ifndef USE_ALLOCATING_PRINT
diff --git a/crypto/bio/bf_buff.c b/crypto/bio/bf_buff.c
index c65dc142a5..f50e8f98a3 100644
--- a/crypto/bio/bf_buff.c
+++ b/crypto/bio/bf_buff.c
@@ -506,6 +506,6 @@ static int buffer_gets(BIO *b, char *buf, int size)
static int buffer_puts(BIO *b, const char *str)
{
- return(BIO_write(b,str,strlen(str)));
+ return(buffer_write(b,str,strlen(str)));
}