summaryrefslogtreecommitdiffstats
path: root/ssl/s23_srvr.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-09 07:12:17 +0000
committerBodo Möller <bodo@openssl.org>1999-04-09 07:12:17 +0000
commitadbfb08354917072764c1f3b54463b15a4a2371d (patch)
tree757cfe8ba47a0ff6ba3b36dfc35ad2e563eba1db /ssl/s23_srvr.c
parentd2e26dccd171143af09b4cd066c0cc7597ed2bef (diff)
Tiny comment to improve code comprehensibility.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'ssl/s23_srvr.c')
-rw-r--r--ssl/s23_srvr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s23_srvr.c b/ssl/s23_srvr.c
index a4d0f1c90f..bf5e112754 100644
--- a/ssl/s23_srvr.c
+++ b/ssl/s23_srvr.c
@@ -213,7 +213,7 @@ SSL *s;
if (!ssl3_setup_buffers(s)) goto err;
n=ssl23_read_bytes(s,7);
- if (n != 7) return(n);
+ if (n != 7) return(n); /* n == -1 || n == 0 */
p=s->packet;