Keep disclaiming 16-bit platform support. For now remove WIN16 references
from .h files...
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user