From: Ivan Heffner <iheffner@xxxxxxxxx> Switched calls to send_sideband() for pack protocol errors to use SIDEBAND_PROTOCOL_ERROR and SIDEBAND_REMOTE_ERROR in place of the sideband magic numbers of -2 and -1, respectively. Signed-off-by: Ivan Heffner <iheffner@xxxxxxxxx> --- builtin/fetch-pack.c | 2 +- builtin/send-pack.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/fetch-pack.c b/builtin/fetch-pack.c index c6bc8eb..63e9ac4 100644 --- a/builtin/fetch-pack.c +++ b/builtin/fetch-pack.c @@ -245,7 +245,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1) static void send_request(int fd, struct strbuf *buf) { if (args.stateless_rpc) { - send_sideband(fd, -1, buf->buf, buf->len, LARGE_PACKET_MAX); + send_sideband(fd, SIDEBAND_REMOTE_ERROR, buf->buf, buf->len, LARGE_PACKET_MAX); packet_flush(fd); } else safe_write(fd, buf->buf, buf->len); diff --git a/builtin/send-pack.c b/builtin/send-pack.c index e0b8030..67c9fe5 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -96,7 +96,7 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext ssize_t n = xread(po.out, buf, LARGE_PACKET_MAX); if (n <= 0) break; - send_sideband(fd, -1, buf, n, LARGE_PACKET_MAX); + send_sideband(fd, SIDEBAND_REMOTE_ERROR, buf, n, LARGE_PACKET_MAX); } free(buf); close(po.out); @@ -320,7 +320,7 @@ int send_pack(struct send_pack_args *args, if (args->stateless_rpc) { if (!args->dry_run && cmds_sent) { packet_buf_flush(&req_buf); - send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX); + send_sideband(out, SIDEBAND_REMOTE_ERROR, req_buf.buf, req_buf.len, LARGE_PACKET_MAX); } } else { safe_write(out, req_buf.buf, req_buf.len); -- 1.7.6.553.g917d7.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html