mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
sh: Read .profile from the home directory (or / if HOME is not set).
In most cases, login shells are started from the home directory, but not in all, such as xterm -ls. This commit depends on r222957 for read_profile() performing parameter expansion. PR: bin/50569
This commit is contained in:
parent
bb6d0c6c0c
commit
c5f4fe06fe
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ main(int argc, char *argv[])
|
|||
state1:
|
||||
state = 2;
|
||||
if (privileged == 0)
|
||||
read_profile(".profile");
|
||||
read_profile("${HOME-}/.profile");
|
||||
else
|
||||
read_profile("/etc/suid_profile");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue