WINGs: Simplify use of HAVE_SECURE_GETENV

Define the macro GETENV(x) instead of sprinkling code with #ifdef HAVE_SECURE_GETENV
everytime we want to use it.
This commit is contained in:
John D Pell
2021-08-10 09:42:43 +01:00
committed by Carlos R. Mafra
parent 75f133285f
commit c060477d57
3 changed files with 8 additions and 10 deletions
+1 -5
View File
@@ -48,11 +48,7 @@ char *wgethomedir()
if (home)
return home;
#ifdef HAVE_SECURE_GETENV
tmp = secure_getenv("HOME");
#else
tmp = getenv("HOME");
#endif
tmp = GETENV("HOME");
if (tmp) {
home = wstrdup(tmp);
return home;