curl_getenv() is now lowercase

This commit is contained in:
Daniel Stenberg 2000-06-05 08:24:37 +00:00
parent 476e0502ad
commit d46932369a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ char *GetEnv(char *variable)
return env?strdup(env):NULL;
}
char *curl_GetEnv(char *v)
char *curl_getenv(char *v)
{
return GetEnv(v);
}