diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-16T10·49+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-16T10·49+0100 |
commit | 5ac27053e9bc4722dde5bd3243488d8e9a0b4623 (patch) | |
tree | 383aa0f6b98ebc3d214f48f2fc4632ea54d510e7 /src/libstore/remote-store.cc | |
parent | 92063851b1c49a5c96cf86b0b61d840dfe155964 (diff) |
Rename ValidPathInfo::hash -> narHash for consistency
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 679210d4cb16..ab2ebb9aecc3 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -273,7 +273,7 @@ ValidPathInfo RemoteStore::queryPathInfo(const Path & path) info.path = path; info.deriver = readString(from); if (info.deriver != "") assertStorePath(info.deriver); - info.hash = parseHash(htSHA256, readString(from)); + info.narHash = parseHash(htSHA256, readString(from)); info.references = readStorePaths<PathSet>(from); info.registrationTime = readInt(from); info.narSize = readLongLong(from); |