diff options
author | eldritch horrors <pennae@lix.systems> | 2024-07-08 02:18:03 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-16 00:57:42 +0000 |
commit | 6b4d46e9e0e1dd80e0977684ab20d14bcd1a6bc3 (patch) | |
tree | b79f09fe3c9e62de804ab8aca8a8fec6d08bbb48 /src/libstore/serve-protocol-impl.hh | |
parent | a5d1f698417dff4e470eb94c38ad6c4e5ebf38ff (diff) |
libstore: remove WriteConn::sink fields
we no longer need these since we're no longer using sinks to serialize things.
Change-Id: Iffb1a3eab33c83f611c88fa4e8beaa8d5ffa079b
Diffstat (limited to 'src/libstore/serve-protocol-impl.hh')
-rw-r--r-- | src/libstore/serve-protocol-impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/serve-protocol-impl.hh b/src/libstore/serve-protocol-impl.hh index 845889451..cfb1dd574 100644 --- a/src/libstore/serve-protocol-impl.hh +++ b/src/libstore/serve-protocol-impl.hh @@ -50,7 +50,7 @@ struct ServeProto::Serialise static WireFormatGenerator write(const Store & store, ServeProto::WriteConn conn, const T & t) { return CommonProto::Serialise<T>::write(store, - CommonProto::WriteConn { .to = conn.to }, + CommonProto::WriteConn {}, t); } }; |