diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-04T13·46+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-04T14·16+0200 |
commit | 0d4a10e910e1916a6f36cb9af6b68817172b51a9 (patch) | |
tree | dc2525bab942c3bdddfd22e40fdaacc525c8a937 /src/libstore/remote-store.cc | |
parent | c6a21aed07520e11dfae09cf9eff9e34e60906d8 (diff) |
Do compression in a sink
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 1a6afe46bb01..9a00a6ed9910 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -541,7 +541,7 @@ void RemoteStore::Connection::processStderr(Sink * sink, Source * source) if (msg == STDERR_WRITE) { string s = readString(from); if (!sink) throw Error("no sink"); - (*sink)((const unsigned char *) s.data(), s.size()); + (*sink)(s); } else if (msg == STDERR_READ) { if (!source) throw Error("no source"); |