X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f3d6d4800b35fd65d2395defdb57fed16cea3e85..8c18ebe81d53ba65546feb5fff89ae574a361343:/sender.c diff --git a/sender.c b/sender.c index 0175c9e4..c011be69 100644 --- a/sender.c +++ b/sender.c @@ -44,7 +44,6 @@ extern int batch_fd; extern int write_batch; extern struct stats stats; extern struct file_list *cur_flist, *first_flist; -extern char *stdout_format; /** * @file @@ -149,7 +148,7 @@ void successful_send(int ndx) void write_ndx_and_attrs(int f_out, int ndx, int iflags, uchar fnamecmp_type, char *buf, int len) { - write_int(f_out, ndx); + write_ndx(f_out, ndx); if (protocol_version < 29) return; write_shortint(f_out, iflags); @@ -191,7 +190,7 @@ void send_files(int f_in, int f_out) if (incremental && first_flist) { flist_free(first_flist); if (first_flist) { - write_int(f_out, NDX_DONE); + write_ndx(f_out, NDX_DONE); continue; } } @@ -199,7 +198,7 @@ void send_files(int f_in, int f_out) break; if (verbose > 2) rprintf(FINFO, "send_files phase=%d\n", phase); - write_int(f_out, NDX_DONE); + write_ndx(f_out, NDX_DONE); continue; } @@ -354,5 +353,5 @@ void send_files(int f_in, int f_out) match_report(); - write_int(f_out, NDX_DONE); + write_ndx(f_out, NDX_DONE); }