diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h index efcc17c6085ba917b70784b56086c4ff884e42d0..8feb6c7a1d6ee0ae58cf4cd8e3d56c176abe214f 100644 --- a/crypto/evp/evp.h +++ b/crypto/evp/evp.h @@ -277,7 +277,7 @@ struct evp_cipher_st int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */ int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */ void *app_data; /* Application data */ - }; + } /* EVP_CIPHER */; /* Values for cipher flags */ @@ -335,7 +335,7 @@ struct evp_cipher_ctx_st int final_used; int block_mask; unsigned char final[EVP_MAX_BLOCK_LENGTH];/* possible final block */ - }; + } /* EVP_CIPHER_CTX */; typedef struct evp_Encode_Ctx_st { diff --git a/crypto/x509/x509_vfy.h b/crypto/x509/x509_vfy.h index 7a0208ec3513b912942b1dc8835d82030be15669..043ed493ec2fd36e79c29408344032ec262075c9 100644 --- a/crypto/x509/x509_vfy.h +++ b/crypto/x509/x509_vfy.h @@ -204,7 +204,7 @@ struct x509_lookup_st char *method_data; /* method data */ X509_STORE *store_ctx; /* who owns us */ - }; + } /* X509_LOOKUP */; /* This is a used when verifying cert chains. Since the * gathering of the cert chain can take some time (and have to be @@ -248,7 +248,7 @@ struct x509_store_ctx_st /* X509_STORE_CTX */ X509_CRL *current_crl; /* current CRL */ CRYPTO_EX_DATA ex_data; - }; + } /* X509_STORE_CTX */; #define X509_STORE_CTX_set_depth(ctx,d) ((ctx)->depth=(d))