aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509/by_dir.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-12-18 19:11:37 +0000
committerAndy Polyakov <appro@openssl.org>2005-12-18 19:11:37 +0000
commitbe7b4458f226a9c8052efa4bb7b61dc4fc0c5353 (patch)
tree6842610954401d9560e4af8c18839574085cf7cc /crypto/x509/by_dir.c
parent7304956e39ae710d07e4691d3215c5c5db7181b5 (diff)
downloadopenssl-be7b4458f226a9c8052efa4bb7b61dc4fc0c5353.tar.gz
Keep disclaiming 16-bit platform support. For now remove WIN16 references
from .h files...
Diffstat (limited to 'crypto/x509/by_dir.c')
-rw-r--r--crypto/x509/by_dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c
index 5290970c76..6398d35a0a 100644
--- a/crypto/x509/by_dir.c
+++ b/crypto/x509/by_dir.c
@@ -121,7 +121,7 @@ static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl,
case X509_L_ADD_DIR:
if (argl == X509_FILETYPE_DEFAULT)
{
- dir=(char *)Getenv(X509_get_default_cert_dir_env());
+ dir=(char *)getenv(X509_get_default_cert_dir_env());
if (dir)
ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM);
else