diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-23T11·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-23T11·25+0000 |
commit | f20f08156031f04a60025bc7a41dd3fcc117baa7 (patch) | |
tree | 92fc4f9a07f3504ffc936a2b5b796d527fdd6436 /src/libstore/store.cc | |
parent | a1e00bf6aa8eb581ff4d47a6287800cf224c6a41 (diff) |
* nix-store: `--isvalid' -> `--check-validity', `--validpath' ->
`--register-validity'. * `nix-store --register-validity': read arguments from stdin, and allow the references and deriver to be set.
Diffstat (limited to 'src/libstore/store.cc')
-rw-r--r-- | src/libstore/store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store.cc b/src/libstore/store.cc index 03855408ed4d..e9d65404400e 100644 --- a/src/libstore/store.cc +++ b/src/libstore/store.cc @@ -247,7 +247,7 @@ void canonicalisePathMetaData(const Path & path) } -static bool isValidPathTxn(const Transaction & txn, const Path & path) +bool isValidPathTxn(const Transaction & txn, const Path & path) { string s; return nixDB.queryString(txn, dbValidPaths, path, s); |