diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-14T13·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-14T13·51+0000 |
commit | 9530cc31700f68fd229eee69eabd2baa099f404a (patch) | |
tree | 5cc317adeb0c8098d8a9197a0bcbcb29ee4d941d /src/libstore/normalise.cc | |
parent | a7b94e87d7d28f763a708876cba46c8f2484b526 (diff) |
* Start move towards SHA-256 hashes instead of MD5.
* Start cleaning up unique store path generation (they weren't always unique; in particular the suffix ("-aterm-2.2", "-builder.sh") was not part of the hash, therefore changes to the suffix would cause multiple store objects with the same hash).
Diffstat (limited to 'src/libstore/normalise.cc')
-rw-r--r-- | src/libstore/normalise.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/normalise.cc b/src/libstore/normalise.cc index d535fe2ee68c..7907325a97eb 100644 --- a/src/libstore/normalise.cc +++ b/src/libstore/normalise.cc @@ -1137,7 +1137,7 @@ void NormalisationGoal::createClosure() /* Write the normal form. This does not have to occur in the transaction below because writing terms is idem-potent. */ ATerm nfTerm = unparseStoreExpr(nf); - Path nfPath = writeTerm(nfTerm, "-s"); + Path nfPath = writeTerm(nfTerm, "s"); /* Register each output path, and register the normal form. This is wrapped in one database transaction to ensure that if we |