From 74e54393abfaa758c37fd5950de4d0a3efa38a15 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Tue, 10 Dec 2019 13:17:30 -0800 Subject: [PATCH] Remove a bitfield indicator from a structure member that didn't require it. --- wolfssl/wolfcrypt/asn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/asn.h b/wolfssl/wolfcrypt/asn.h index 311463890..99222638d 100644 --- a/wolfssl/wolfcrypt/asn.h +++ b/wolfssl/wolfcrypt/asn.h @@ -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);