From be7b4458f226a9c8052efa4bb7b61dc4fc0c5353 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 18 Dec 2005 19:11:37 +0000 Subject: Keep disclaiming 16-bit platform support. For now remove WIN16 references from .h files... --- crypto/conf/conf_api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/conf') diff --git a/crypto/conf/conf_api.c b/crypto/conf/conf_api.c index 0032baa711..a708235834 100644 --- a/crypto/conf/conf_api.c +++ b/crypto/conf/conf_api.c @@ -145,7 +145,7 @@ char *_CONF_get_string(const CONF *conf, const char *section, const char *name) if (v != NULL) return(v->value); if (strcmp(section,"ENV") == 0) { - p=Getenv(name); + p=getenv(name); if (p != NULL) return(p); } } @@ -158,7 +158,7 @@ char *_CONF_get_string(const CONF *conf, const char *section, const char *name) return(NULL); } else - return(Getenv(name)); + return(getenv(name)); } #if 0 /* There's no way to provide error checking with this function, so -- cgit v1.2.3