diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-08T13·48+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-08T13·48+0000 |
commit | c5474398433225e40c8868b0952aebe36da2c849 (patch) | |
tree | 6cb7fbf87fea619368637ad72a33fb7765c6a14a /src/libstore/store.hh | |
parent | 3d74274b37a0f3b841ad860143f9c17401c3d7c4 (diff) |
* Subflag in `--verify': `nix-store --verify --check-contents' checks
that the contents of store paths has not changed by comparing hashes of their current contents to the hashes stored in the database.
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r-- | src/libstore/store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh index e981ade1009b..8e59679a7d3e 100644 --- a/src/libstore/store.hh +++ b/src/libstore/store.hh @@ -122,7 +122,7 @@ Path addTextToStore(const string & suffix, const string & s, /* Delete a value from the nixStore directory. */ void deleteFromStore(const Path & path); -void verifyStore(); +void verifyStore(bool checkContents); #endif /* !__STORE_H */ |