mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-11 03:05:52 +01:00
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:
committed by
Carlos R. Mafra
parent
75f133285f
commit
c060477d57
@@ -58,11 +58,7 @@ const char *wusergnusteppath()
|
||||
/* Value have been already computed, re-use it */
|
||||
return path;
|
||||
|
||||
#ifdef HAVE_SECURE_GETENV
|
||||
gspath = secure_getenv("WMAKER_USER_ROOT");
|
||||
#else
|
||||
gspath = getenv("WMAKER_USER_ROOT");
|
||||
#endif
|
||||
gspath = GETENV("WMAKER_USER_ROOT");
|
||||
if (gspath) {
|
||||
gspath = wexpandpath(gspath);
|
||||
if (gspath) {
|
||||
|
||||
Reference in New Issue
Block a user