From: Todd C. Miller Date: Sun, 19 Nov 1995 15:47:50 +0000 (+0000) Subject: more people use _RLD_ than just alphas... X-Git-Tag: SUDO_1_4_0~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3f95518c20ff22cb412f953c5cb90c6b35122c2;p=sudo more people use _RLD_ than just alphas... --- diff --git a/sudo.c b/sudo.c index 8841f4fff..df2e878a2 100644 --- a/sudo.c +++ b/sudo.c @@ -149,20 +149,18 @@ extern int printmatches; * Table of "bad" envariables to remove and len for strncmp() */ struct env_table badenv_table[] = { + { "IFS=", 4 }, { "LD_", 3 }, + { "_RLD_", 5 }, #ifdef __hpux { "SHLIB_PATH=", 11 }, #endif /* __hpux */ #ifdef _AIX { "LIBPATH=", 8 }, #endif /* _AIX */ -#if defined (__osf__) && defined(__alpha) - { "_RLD_", 5 }, -#endif /* __alpha && __alpha */ #ifdef HAVE_KERB4 { "KRB_CONF", 8 }, #endif - { "IFS=", 4 }, { (char *) NULL, 0 } };