* Fix the build.
This commit is contained in:
parent
194d21f9f6
commit
b5363810bb
|
@ -332,7 +332,7 @@ PathSet RemoteStore::queryDerivationOutputNames(const Path & path)
|
|||
writeInt(wopQueryDerivationOutputNames, to);
|
||||
writeString(path, to);
|
||||
processStderr();
|
||||
return readStringSet(from);
|
||||
return readStrings<PathSet>(from);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -337,7 +337,7 @@ static void performOp(unsigned int clientVersion,
|
|||
StringSet names;
|
||||
names = store->queryDerivationOutputNames(path);
|
||||
stopWork();
|
||||
writeStringSet(names, to);
|
||||
writeStrings(names, to);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue