summaryrefslogtreecommitdiffstats
path: root/crypto/x509/x509_obj.c
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 /crypto/x509/x509_obj.c
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 'crypto/x509/x509_obj.c')
-rw-r--r--crypto/x509/x509_obj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x509_obj.c b/crypto/x509/x509_obj.c
index b2a33a42b9..b283a62f5d 100644
--- a/crypto/x509/x509_obj.c
+++ b/crypto/x509/x509_obj.c
@@ -66,7 +66,7 @@
char *X509_NAME_oneline(X509_NAME *a, char *buf, int len)
{
X509_NAME_ENTRY *ne;
- unsigned int i;
+int i;
int n,lold,l,l1,l2,num,j,type;
const char *s;
char *p;