From b5363810bbeea37df34a5cb0051e05161630a510 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 20 Dec 2011 16:37:01 +0000 Subject: [PATCH] * Fix the build. --- src/libstore/remote-store.cc | 2 +- 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 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(from); } diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 68567f341e..f28905a24b 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; }