aboutsummaryrefslogtreecommitdiff
path: root/crypto/x509/by_dir.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-12-22 13:54:12 +0000
committerAndy Polyakov <appro@openssl.org>2008-12-22 13:54:12 +0000
commite527201f6be3c295358bcc8b6bafec598f02dc97 (patch)
treee3b3ea15baf24f50465ad652b13f418dcc26464d /crypto/x509/by_dir.c
parent70531c147c2d38b03f109312a270ccc0af6cf8d6 (diff)
downloadopenssl-e527201f6be3c295358bcc8b6bafec598f02dc97.zip
openssl-e527201f6be3c295358bcc8b6bafec598f02dc97.tar.gz
openssl-e527201f6be3c295358bcc8b6bafec598f02dc97.tar.bz2
This _WIN32-specific patch makes it possible to "wrap" OpenSSL in another
.DLL, in particular static build. The issue has been discussed in RT#1230 and later on openssl-dev, and mutually exclusive approaches were suggested. This completes compromise solution suggested in RT#1230. PR: 1230
Diffstat (limited to 'crypto/x509/by_dir.c')
-rw-r--r--crypto/x509/by_dir.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c
index b355de9..170cd89 100644
--- a/crypto/x509/by_dir.c
+++ b/crypto/x509/by_dir.c
@@ -392,6 +392,9 @@ static int get_cert_by_subject(X509_LOOKUP *xl, int type, X509_NAME *name,
postfix,k);
}
#ifndef OPENSSL_NO_POSIX_IO
+#ifdef _WIN32
+#define stat _stat
+#endif
{
struct stat st;
if (stat(b->data,&st) < 0)