diff options
author | Sam Bingner <sam@bingner.com> | 2018-12-26 15:34:06 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-12-26 15:35:01 -1000 |
commit | 9d801c75cdf8e48a8013257c684c7702806dde6c (patch) | |
tree | b9321de82a963b64f8e88081737cd182ea059e29 /apt-pkg/contrib | |
parent | 59c3e0b998fd69532159d8dc416109cf50651482 (diff) | |
parent | f05c3233c311d40bb9f2ef65888aa7ce574a334b (diff) |
Merge bingner.com:apt1.4.8+iPhone-1
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index a90cd647a..e4038c39c 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -2949,7 +2949,7 @@ static std::string APT_NONNULL(1) GetTempDirEnv(char const * const env) /*{{{*/ stat(tmpdir, &st) != 0 || (st.st_mode & S_IFDIR) == 0) // exists and is directory tmpdir = "/tmp"; else if (geteuid() != 0 && // root can do everything anyway - faccessat(AT_FDCWD, tmpdir, R_OK | W_OK | X_OK, AT_EACCESS) != 0) // current user has rwx access to directory + access(tmpdir, R_OK | W_OK | X_OK) != 0) // current user has rwx access to directory tmpdir = "/tmp"; return string(tmpdir); |