Tiny comment to improve code comprehensibility.
Submitted by: Reviewed by: PR:
This commit is contained in:
parent
d2e26dccd1
commit
adbfb08354
@ -449,7 +449,7 @@ ASN1_UTCTIME *ctm;
|
|||||||
X509_gmtime_adj(&atm,-offset);
|
X509_gmtime_adj(&atm,-offset);
|
||||||
|
|
||||||
i=(buff1[0]-'0')*10+(buff1[1]-'0');
|
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');
|
j=(buff2[0]-'0')*10+(buff2[1]-'0');
|
||||||
if (j < 50) j+=100;
|
if (j < 50) j+=100;
|
||||||
|
|
||||||
|
@ -213,7 +213,7 @@ SSL *s;
|
|||||||
if (!ssl3_setup_buffers(s)) goto err;
|
if (!ssl3_setup_buffers(s)) goto err;
|
||||||
|
|
||||||
n=ssl23_read_bytes(s,7);
|
n=ssl23_read_bytes(s,7);
|
||||||
if (n != 7) return(n);
|
if (n != 7) return(n); /* n == -1 || n == 0 */
|
||||||
|
|
||||||
p=s->packet;
|
p=s->packet;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user