aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-08-06 11:57:08 +0000
committerBodo Möller <bodo@openssl.org>2001-08-06 11:57:08 +0000
commite51d1321fc91f2008022827009baea2dab938a2e (patch)
treea98f208592f18c8a27f0b5e2319e6051edc28c60
parentb9fdb3eb99555d6e362035cebce701d6a5aa2a89 (diff)
downloadopenssl-e51d1321fc91f2008022827009baea2dab938a2e.tar.gz
More typedef'd struct names as search targets
-rw-r--r--crypto/evp/evp.h4
-rw-r--r--crypto/x509/x509_vfy.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index efcc17c608..8feb6c7a1d 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 7a0208ec35..043ed493ec 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))