1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 07:22:43 +01:00

Merge branch 'nix-doctor' of https://github.com/LnL7/nix

This commit is contained in:
Eelco Dolstra 2018-10-27 12:54:22 +02:00
commit 63575ffa38
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
7 changed files with 139 additions and 0 deletions

View file

@ -1338,6 +1338,12 @@ void LocalStore::verifyPath(const Path & path, const PathSet & store,
}
unsigned int LocalStore::getProtocol()
{
return PROTOCOL_VERSION;
}
#if defined(FS_IOC_SETFLAGS) && defined(FS_IOC_GETFLAGS) && defined(FS_IMMUTABLE_FL)
static void makeMutable(const Path & path)