Remove a bitfield indicator from a structure member that didn't require it.

This commit is contained in:
John Safranek
2019-12-10 13:17:30 -08:00
parent 2b66a9f1ec
commit 74e54393ab

View File

@ -1351,7 +1351,7 @@ struct DecodedCRL {
RevokedCert* certs; /* revoked cert list */
int totalCerts; /* number on list */
void* heap;
byte extAuthKeyIdSet : 1; /* Set when the AKID was read from CRL */
byte extAuthKeyIdSet; /* Set when the AKID was read from CRL */
};
WOLFSSL_LOCAL void InitDecodedCRL(DecodedCRL*, void* heap);