aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-28 06:58:22 +0000
committerBodo Möller <bodo@openssl.org>2000-11-28 06:58:22 +0000
commit24b44446e20b3e80999b18fd4f76316f7220b5cd (patch)
tree51302d4b691491cb10a9543733f5b09ebb1277c3 /ssl/s3_lib.c
parent87739b2c53238f7185ab476b020183da35feb899 (diff)
downloadopenssl-24b44446e20b3e80999b18fd4f76316f7220b5cd.tar.gz
Comments on SSL_peek deficiencies
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 184d4f47ff..b8ffbed646 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -638,10 +638,10 @@ SSL_CIPHER *ssl3_get_cipher(unsigned int u)
return(NULL);
}
-/* The problem is that it may not be the correct record type */
int ssl3_pending(SSL *s)
{
- return(s->s3->rrec.length);
+ /* The problem is that it may not be the correct record type */
+ return(s->s3->rrec.length); /* FIXME */
}
int ssl3_new(SSL *s)