diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-03T15·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-03T15·32+0000 |
commit | 35247c4c9f55fd49d8838b0df963016fdcde0420 (patch) | |
tree | a8d04945b60a28bb8fb9b6ff5b3f72d04e85f639 /src/libstore/local-store.cc | |
parent | 84d6459bd5a0820729c57d710f886af6f423259b (diff) |
* Removed `build-allow-root'.
* Added `build-users-group', the group under which builds are to be performed. * Check that /nix/store has 1775 permission and is owner by the build-users-group.
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 0b8900f2501b..2f3f3a7da882 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -235,10 +235,10 @@ void canonicalisePathMetaData(const Path & path) throw SysError(format("changing mode of `%1%' to %2$o") % path % mode); } - if (st.st_uid != getuid() || st.st_gid != getgid()) { - if (chown(path.c_str(), getuid(), getgid()) == -1) + if (st.st_uid != geteuid() || st.st_gid != getegid()) { + if (chown(path.c_str(), geteuid(), getegid()) == -1) throw SysError(format("changing owner/group of `%1%' to %2%/%3%") - % path % getuid() % getgid()); + % path % geteuid() % getegid()); } if (st.st_mtime != 0) { |