diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-06-10 11:48:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 11:48:38 +0200 |
commit | b9ae1bdd7a1ed8eee25fc37c97d74c1d6771778d (patch) | |
tree | 94ff7c2cdb36c9c1180be86030616ef9c49aceab /src/nix/verify.cc | |
parent | f64cc6d9b18b7594b560b4a26e4268992bf54eee (diff) | |
parent | 6ee03b8444e1838b9985a9fd4f0f46947e958b3b (diff) |
Merge pull request #3655 from zimbatm/hash-encoding-prepare
libutils/hash: remove default encoding
Diffstat (limited to 'src/nix/verify.cc')
-rw-r--r-- | src/nix/verify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/verify.cc b/src/nix/verify.cc index cf1fa6a99..287dad101 100644 --- a/src/nix/verify.cc +++ b/src/nix/verify.cc @@ -101,7 +101,7 @@ struct CmdVerify : StorePathsCommand act2.result(resCorruptedPath, store->printStorePath(info->path)); printError( "path '%s' was modified! expected hash '%s', got '%s'", - store->printStorePath(info->path), info->narHash.to_string(), hash.first.to_string()); + store->printStorePath(info->path), info->narHash.to_string(Base32, true), hash.first.to_string(Base32, true)); } } |