about summary refs log tree commit diff
path: root/src/libstore/store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-02-08T13·23+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-02-08T13·23+0000
commit3d74274b37a0f3b841ad860143f9c17401c3d7c4 (patch)
treeafd97d4cb2d2615e1b8470c4170871dbae198702 /src/libstore/store.hh
parent60feff82cf4dd89c9039914c5b3ef8e1b8acf8e7 (diff)
* Updated `nix-store --verify' to the new schema.
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r--src/libstore/store.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh
index 1f2b630e106c..e981ade1009b 100644
--- a/src/libstore/store.hh
+++ b/src/libstore/store.hh
@@ -90,11 +90,13 @@ void setReferences(const Transaction & txn, const Path & storePath,
 
 /* Queries the set of outgoing FS references for a store path.  The
    result is not cleared. */
-void queryReferences(const Path & storePath, PathSet & references);
+void queryReferences(const Transaction & txn,
+    const Path & storePath, PathSet & references);
 
 /* Queries the set of incoming FS references for a store path.  The
    result is not cleared. */
-void queryReferers(const Path & storePath, PathSet & referers);
+void queryReferers(const Transaction & txn,
+    const Path & storePath, PathSet & referers);
 
 /* Sets the deriver of a store path.  Use with care! */
 void setDeriver(const Transaction & txn, const Path & storePath,