]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
su: use ENV_PATH resp ENV_SUPATH to be consistent with login
authorLudwig Nussel <ludwig.nussel@suse.de>
Fri, 1 Jun 2012 12:51:17 +0000 (14:51 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 5 Jun 2012 13:16:10 +0000 (15:16 +0200)
Signed-off-by: Ludwig Nussel <ludwig.nussel@suse.de>
login-utils/su.c

index b1fca5fbddd28c2667a5e6c4ff3cc8def7a40255..22b9ccc087951532d354bbd7c2e1ee1be031c959 100644 (file)
@@ -476,6 +476,20 @@ clearsbin (const char *const path)
   return ret;
 }
 
+static void
+set_path(const struct passwd* pw)
+{
+  int r;
+  if (pw->pw_uid)
+    r = logindefs_setenv("PATH", "ENV_PATH", _PATH_DEFPATH);
+
+  else if ((r = logindefs_setenv("PATH", "ENV_ROOTPATH", NULL)) != 0)
+    r = logindefs_setenv("PATH", "ENV_SUPATH", _PATH_DEFPATH_ROOT);
+
+  if (r != 0)
+    err (EXIT_FAILURE,  _("failed to set PATH"));
+}
+
 /* Update `environ' for the new shell based on PW, with SHELL being
    the value for the SHELL environment variable.  */
 
@@ -497,9 +511,7 @@ modify_environment (const struct passwd *pw, const char *shell)
       xsetenv ("SHELL", shell);
       xsetenv ("USER", pw->pw_name);
       xsetenv ("LOGNAME", pw->pw_name);
-      xsetenv ("PATH", (pw->pw_uid
-                       ? getlogindefs_str ("PATH", _PATH_DEFPATH)
-                       : getlogindefs_str ("SUPATH", _PATH_DEFPATH_ROOT)));
+      set_path(pw);
     }
   else
     {
@@ -510,11 +522,7 @@ modify_environment (const struct passwd *pw, const char *shell)
           xsetenv ("HOME", pw->pw_dir);
           xsetenv ("SHELL", shell);
          if (getlogindefs_bool ("ALWAYS_SET_PATH", 0))
-           xsetenv ("PATH", (pw->pw_uid
-                             ? getlogindefs_str ("PATH",
-                                           _PATH_DEFPATH)
-                             : getlogindefs_str ("SUPATH",
-                                           _PATH_DEFPATH_ROOT)));
+           set_path(pw);
          else
            {
              char const *path = getenv ("PATH");