about summary refs log tree commit diff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-12-20T16·37+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-12-20T16·37+0000
commitb5363810bbeea37df34a5cb0051e05161630a510 (patch)
treed670a87312b5a1546f6c25d79444ceb924a36d1a /src/libstore/remote-store.cc
parent194d21f9f63ceb034f3e8294f89aa6bf6a217bc9 (diff)
* Fix the build.
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 ce99c205e7..6e9921ede7 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -332,7 +332,7 @@ PathSet RemoteStore::queryDerivationOutputNames(const Path & path)
     writeInt(wopQueryDerivationOutputNames, to);
     writeString(path, to);
     processStderr();
-    return readStringSet(from);
+    return readStrings<PathSet>(from);
 }