diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-10-27T10·54+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-10-27T10·54+0200 |
commit | 63575ffa38650d84aaec04d7447f92cf06db52a5 (patch) | |
tree | d75eefdf9e6b879ae93bfad95740360184915b47 /src/libstore/local-store.cc | |
parent | 2cf98218c81c7563ba4c7a6016ffe6f5437678c4 (diff) | |
parent | ed25753501a7a3f77c097df01db299bdb60ede96 (diff) |
Merge branch 'nix-doctor' of https://github.com/LnL7/nix
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 197b9d78995b..216f3417c4a8 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -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) |