* Fix the build.

This commit is contained in:
Eelco Dolstra 2011-12-20 16:37:01 +00:00
parent 194d21f9f6
commit b5363810bb
2 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ PathSet RemoteStore::queryDerivationOutputNames(const Path & path)
writeInt(wopQueryDerivationOutputNames, to); writeInt(wopQueryDerivationOutputNames, to);
writeString(path, to); writeString(path, to);
processStderr(); processStderr();
return readStringSet(from); return readStrings<PathSet>(from);
} }

View File

@ -337,7 +337,7 @@ static void performOp(unsigned int clientVersion,
StringSet names; StringSet names;
names = store->queryDerivationOutputNames(path); names = store->queryDerivationOutputNames(path);
stopWork(); stopWork();
writeStringSet(names, to); writeStrings(names, to);
break; break;
} }