X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4ea4acf17ba245e64a0d549e030fa9def99750ea..663b2857ebe84df29c10c17c818040ceb9569593:/io.c diff --git a/io.c b/io.c index 79fb7e93..33a0e654 100644 --- a/io.c +++ b/io.c @@ -405,6 +405,13 @@ int send_msg(enum msgcode code, const char *buf, int len) return 1; } +void send_msg_int(enum msgcode code, int num) +{ + char numbuf[4]; + SIVAL(numbuf, 0, num); + send_msg(code, numbuf, 4); +} + int get_redo_num(int itemizing, enum logcode code) { while (1) {