diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T13·31+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T13·31+0000 |
commit | b428adc267f23441be2f801239641aaf8419e4ba (patch) | |
tree | 8dbbe5171888a340b8bf223268a2c764d94d0bb3 /src/libutil/hash.cc | |
parent | cc826dc03e738c1d6c6fd6de0dfd9600f6289b72 (diff) |
* Strip off the `.nix' suffix from the attribute name for files in
~/.nix-defexpr, otherwise the attribute cannot be selected with the `-A' option. Useful if you want to stick a Nix expression directly in ~/.nix-defexpr.
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r-- | src/libutil/hash.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 70604a50a342..372826f31d2d 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -257,6 +257,7 @@ Hash hashString(HashType ht, const string & s) start(ht, ctx); update(ht, ctx, (const unsigned char *) s.c_str(), s.length()); finish(ht, ctx, hash.hash); + //printMsg(lvlError, format("hashString %1% --> %2%:\n%3%\n===========END======") % s.size() % printHash(hash) % s); return hash; } |