Skip to content

Commit

Permalink
Correct bracketing error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Laurie committed Jan 21, 1999
1 parent 9b5cc15 commit 1bbd21e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crypto/asn1/x_crl.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ long length;
M_ASN1_D2I_get(ret->issuer,d2i_X509_NAME);
M_ASN1_D2I_get(ret->lastUpdate,d2i_ASN1_TIME);
/* Manually handle the OPTIONAL ASN1_TIME stuff */
if((c.slen != 0) &&
( ( (M_ASN1_next & ~V_ASN1_CONSTRUCTED) ==
V_ASN1_UNIVERSAL|V_ASN1_UTCTIME)
|| ( ( (M_ASN1_next & ~V_ASN1_CONSTRUCTED) ==
V_ASN1_UNIVERSAL|V_ASN1_GENERALIZEDTIME) ) ) ) {
if(c.slen != 0
&& ( (M_ASN1_next & ~V_ASN1_CONSTRUCTED) ==
(V_ASN1_UNIVERSAL|V_ASN1_UTCTIME)
|| (M_ASN1_next & ~V_ASN1_CONSTRUCTED) ==
(V_ASN1_UNIVERSAL|V_ASN1_GENERALIZEDTIME) ) ) {
M_ASN1_D2I_get(ret->nextUpdate,d2i_ASN1_TIME);
}
if(!ret->nextUpdate)
Expand Down

0 comments on commit 1bbd21e

Please sign in to comment.