mirror of
https://github.com/NixOS/nix.git
synced 2025-11-16 23:42:43 +01:00
Don't use std::cerr in a few places
Slightly scared of using std::cerr in a vforked process...
This commit is contained in:
parent
3acc8adcad
commit
8541d27fce
5 changed files with 34 additions and 30 deletions
|
|
@ -556,7 +556,7 @@ void RemoteStore::processStderr(Sink * sink, Source * source)
|
|||
}
|
||||
else {
|
||||
string s = readString(from);
|
||||
writeToStderr((const unsigned char *) s.data(), s.size());
|
||||
writeToStderr(s);
|
||||
}
|
||||
}
|
||||
if (msg == STDERR_ERROR) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue