Lines Matching defs:home
382 char *home;
390 home = getenv("HOME");
392 if (home != NULL) {
393 Debug1(LDAP_DEBUG_TRACE, "ldap_init: HOME env is %s\n",
394 home );
395 path = LDAP_MALLOC(strlen(home) + strlen(file) + sizeof( LDAP_DIRSEP "."));
397 Debug0(LDAP_DEBUG_TRACE, "ldap_init: HOME env is NULL\n" );
400 if(home != NULL && path != NULL) {
404 sprintf(path, "%s" LDAP_DIRSEP "%s", home, file);
408 sprintf(path, "%s" LDAP_DIRSEP ".%s", home, file);