aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
authorCarlo Nucera <carlo.nucera@protonmail.com>2020-06-02 11:00:10 -0400
committerCarlo Nucera <carlo.nucera@protonmail.com>2020-06-02 11:00:10 -0400
commita5d820a0a396db01e6297dfcadaa3218a1e918c7 (patch)
tree01ac853a7ebf045aca8bcb7125ebed671f1629e4 /src/libstore/remote-store.cc
parent1b6461f671b5ad8475c6f30f82d8fc9422746508 (diff)
Change parseCa(Opt) to parseContentAddress(Opt)
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc2
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));