summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-05-08 22:46:51 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-05-08 22:46:51 +0000
commita5ab0532caf9a11f20eeb49b78ddc8e90f64a418 (patch)
tree342738b8653ea2833844035a0a6956e335a044a8 /ssl
parente40b7abeed32f51f57e4578254aa1559762a8ea2 (diff)
Various Win32 fixes. Win95 doesn't support MoveFileEx() (which was used for a
Win32 version of rename() ). There isn't a precise rename() equivalent under Win95: the standard rename() complains if the destination already exists so replaced with a combination of unlink() and MoveFile().
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_cert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_cert.c b/ssl/ssl_cert.c
index 30877eaef6..be4efac384 100644
--- a/ssl/ssl_cert.c
+++ b/ssl/ssl_cert.c
@@ -380,7 +380,7 @@ int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
X509 *x=NULL;
X509_NAME *xn=NULL;
int ret=1;
- int (*oldcmp)();
+ int (*oldcmp)(X509_NAME **a, X509_NAME **b);
oldcmp=sk_X509_NAME_set_cmp_func(stack,name_cmp);