From b9051ec9a49473b81bcd50868e3367186d919fb2 Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Tue, 23 Jul 2002 21:11:09 +0000 Subject: - markus@cvs.openbsd.org 2002/07/22 11:03:06 [session.c] fallback to _PATH_STDPATH on setusercontext+LOGIN_SETPATH errors; --- session.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'session.c') diff --git a/session.c b/session.c index 38388d43..e2e30340 100644 --- a/session.c +++ b/session.c @@ -33,7 +33,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: session.c,v 1.144 2002/07/19 15:43:33 markus Exp $"); +RCSID("$OpenBSD: session.c,v 1.145 2002/07/22 11:03:06 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -962,8 +962,10 @@ do_setup_env(Session *s, const char *shell) child_set_env(&env, &envsize, "LOGNAME", pw->pw_name); child_set_env(&env, &envsize, "HOME", pw->pw_dir); #ifdef HAVE_LOGIN_CAP - (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH); - child_set_env(&env, &envsize, "PATH", getenv("PATH")); + if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0) + child_set_env(&env, &envsize, "PATH", _PATH_STDPATH); + else + child_set_env(&env, &envsize, "PATH", getenv("PATH")); #else /* HAVE_LOGIN_CAP */ # ifndef HAVE_CYGWIN /* -- cgit v1.2.3