Home | History | Annotate | Download | only in lib

Lines Matching refs:home

74     char *home = curl_getenv("HOME"); /* portable environment reader */
75 if(home) {
84 home = strdup(pw.pw_dir);
85 if(!home)
95 home = pw->pw_dir;
100 if(!home)
101 return retcode; /* no home directory found (or possibly out of memory) */
103 netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC);
105 free(home);