diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-20T16·37+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-20T16·37+0000 |
commit | b5363810bbeea37df34a5cb0051e05161630a510 (patch) | |
tree | d670a87312b5a1546f6c25d79444ceb924a36d1a /src | |
parent | 194d21f9f63ceb034f3e8294f89aa6bf6a217bc9 (diff) |
* Fix the build.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/remote-store.cc | 2 | ||||
-rw-r--r-- | src/nix-worker/nix-worker.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index ce99c205e7d0..6e9921ede79f 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); } diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 68567f341e05..f28905a24b8d 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -337,7 +337,7 @@ static void performOp(unsigned int clientVersion, StringSet names; names = store->queryDerivationOutputNames(path); stopWork(); - writeStringSet(names, to); + writeStrings(names, to); break; } |