aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-09 10:09:20 +0000
committerBodo Möller <bodo@openssl.org>2001-03-09 10:09:20 +0000
commite34cfcf7e19b5e5d39c8ba97e6e5f65f23b99ad6 (patch)
tree481531b740b4a55f2292541092c5ea990d768ad5 /ssl/s3_lib.c
parent135883505078a868349e0a3c24514099e3cb2dac (diff)
downloadopenssl-e34cfcf7e19b5e5d39c8ba97e6e5f65f23b99ad6.tar.gz
Consistently use 'void *' for SSL read, peek and write functions.
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index e9aae569df..31f4f80779 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -1615,7 +1615,7 @@ int ssl3_read(SSL *s, void *buf, int len)
return ssl3_read_internal(s, buf, len, 0);
}
-int ssl3_peek(SSL *s, char *buf, int len)
+int ssl3_peek(SSL *s, void *buf, int len)
{
return ssl3_read_internal(s, buf, len, 1);
}