aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/legacy-ssh-store.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-02 12:47:18 -0400
committerGitHub <noreply@github.com>2020-06-02 12:47:18 -0400
commit25e61812f341a4467ab4fdffb12f63b48a3d0272 (patch)
treed251218d52c37a0ffffbd53a6c8e571ce87ac496 /src/libstore/legacy-ssh-store.cc
parenta5d820a0a396db01e6297dfcadaa3218a1e918c7 (diff)
Apply suggestions from code review
Co-authored-by: Matthew Bauer <mjbauer95@gmail.com>
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r--src/libstore/legacy-ssh-store.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc
index 9b6e6e6d7..b43e34484 100644
--- a/src/libstore/legacy-ssh-store.cc
+++ b/src/libstore/legacy-ssh-store.cc
@@ -114,11 +114,7 @@ struct LegacySSHStore : public Store
if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 4) {
auto s = readString(conn->from);
info->narHash = s.empty() ? Hash() : Hash(s);
- {
- std::string rawCaOpt;
- conn->from >> rawCaOpt;
- info->ca = parseContentAddressOpt(rawCaOpt);
- }
+ info->ca = parseContentAddressOpt(readString(conn->from));
info->sigs = readStrings<StringSet>(conn->from);
}