Do the same check for interactive shell (PATH warning)

like in csh.c
This commit is contained in:
Andrey A. Chernov 1995-07-07 23:13:11 +00:00
parent e4cff55ea3
commit f70e927c09

View File

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: set.c,v 1.2 1994/09/24 02:54:16 davidg Exp $
* $Id: set.c,v 1.3 1995/05/30 00:06:38 rgrimes Exp $
*/
#ifndef lint
@ -664,7 +664,8 @@ exportpath(val)
"Warning: ridiculously long PATH truncated\n");
break;
}
if ((**val != '/' || **val == '\0') && (euid == 0 || uid == 0))
if (**val != '/' && (euid == 0 || uid == 0) &&
(intact || intty && isatty(SHOUT)))
(void) fprintf(csherr,
"Warning: exported path contains relative components.\n");
(void) Strcat(exppath, *val++);