diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-02 11:00:10 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-02 11:00:10 -0400 |
commit | a5d820a0a396db01e6297dfcadaa3218a1e918c7 (patch) | |
tree | 01ac853a7ebf045aca8bcb7125ebed671f1629e4 /src/libstore/remote-store.cc | |
parent | 1b6461f671b5ad8475c6f30f82d8fc9422746508 (diff) |
Change parseCa(Opt) to parseContentAddress(Opt)
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 2744245f3..6dab9dc16 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -383,7 +383,7 @@ void RemoteStore::queryPathInfoUncached(const StorePath & path, info->sigs = readStrings<StringSet>(conn->from); string caOptRaw; conn->from >> caOptRaw; - info->ca = parseCaOpt(caOptRaw); + info->ca = parseContentAddressOpt(caOptRaw); } } callback(std::move(info)); |