aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-12-20 16:37:01 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-12-20 16:37:01 +0000
commitb5363810bbeea37df34a5cb0051e05161630a510 (patch)
treed670a87312b5a1546f6c25d79444ceb924a36d1a /src/libstore
parent194d21f9f63ceb034f3e8294f89aa6bf6a217bc9 (diff)
* Fix the build.
Diffstat (limited to 'src/libstore')
-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 ce99c205e..6e9921ede 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);
}