summaryrefslogtreecommitdiffstats
path: root/crypto/x509/x509_meth.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509/x509_meth.c')
-rw-r--r--crypto/x509/x509_meth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509/x509_meth.c b/crypto/x509/x509_meth.c
index 05ed4bf863..9dc587a092 100644
--- a/crypto/x509/x509_meth.c
+++ b/crypto/x509/x509_meth.c
@@ -58,9 +58,9 @@ int (*X509_LOOKUP_meth_get_new_item(const X509_LOOKUP_METHOD* method))
int X509_LOOKUP_meth_set_free(
X509_LOOKUP_METHOD *method,
- void (*free) (X509_LOOKUP *ctx))
+ void (*free_fn) (X509_LOOKUP *ctx))
{
- method->free = free;
+ method->free = free_fn;
return 1;
}