diff options
Diffstat (limited to 'sideband.c')
-rw-r--r-- | sideband.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sideband.c b/sideband.c index fde8adc000..c09929dafa 100644 --- a/sideband.c +++ b/sideband.c @@ -124,9 +124,8 @@ int recv_sideband(const char *me, int in_stream, int out) * fd is connected to the remote side; send the sideband data * over multiplexed packet stream. */ -ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max) +void send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max) { - ssize_t ssz = sz; const char *p = data; while (sz) { @@ -148,5 +147,4 @@ ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet p += n; sz -= n; } - return ssz; } |