Displaying 1 result from an estimated 1 matches for "write_batch_temp".
2004 Jul 12
2
[PATCH] Batch-mode rewrite
...ether a server is involved or
! * not. If only version exchange always used the same protocol...
! */
! int start_inband_exchange(char *user, char *path, int f_in, int f_out,
! int argc)
{
int i;
char *sargs[MAX_ARGS];
int sargc = 0;
char line[MAXPATHLEN];
char *p;
+ int write_batch_temp;
+ write_batch_temp = write_batch; /* save incoming mode */
+ write_batch = 0; /* don't write RSYNCD protocol to file */
if (argc == 0 && !am_sender)
list_only = 1;
***************
*** 200,205 ****
--- 212,221 ----
io_start_multiplex_in(f_in);
}
+ if (write_batch...