Tiny comment to improve code comprehensibility.
Submitted by:
Reviewed by:
PR:
diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c
index 752cf4f..debefef 100644
--- a/crypto/x509/x509_vfy.c
+++ b/crypto/x509/x509_vfy.c
@@ -449,7 +449,7 @@
 	X509_gmtime_adj(&atm,-offset);
 
 	i=(buff1[0]-'0')*10+(buff1[1]-'0');
-	if (i < 50) i+=100;
+	if (i < 50) i+=100; /* cf. RFC 2459 */
 	j=(buff2[0]-'0')*10+(buff2[1]-'0');
 	if (j < 50) j+=100;
 
diff --git a/ssl/s23_srvr.c b/ssl/s23_srvr.c
index a4d0f1c..bf5e112 100644
--- a/ssl/s23_srvr.c
+++ b/ssl/s23_srvr.c
@@ -213,7 +213,7 @@
 		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;