Displaying 3 results from an estimated 3 matches for "batch_fd".
2004 Jul 12
2
[PATCH] Batch-mode rewrite
...clientserver.c 13 Jun 2004 14:18:48 -0000 1.127
--- clientserver.c 12 Jul 2004 00:37:46 -0000
***************
*** 50,55 ****
--- 50,57 ----
extern struct exclude_list_struct server_exclude_list;
extern char *exclude_path_prefix;
extern char *config_file;
+ extern int write_batch;
+ extern int batch_fd;
char *auth_user;
***************
*** 97,109 ****
return ret < 0? ret : client_run(fd, fd, -1, argc, argv);
}
! 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];...
2006 Jan 24
1
propagate atimes with rsync-2.6.6 (fwd)
...me;
+ time_t acctime;
uid_t uid;
gid_t gid;
mode_t mode;
diff -uNr rsync-2.6.6/sender.c rsync-2.6.6_patch/sender.c
--- rsync-2.6.6/sender.c 2005-05-19 10:52:24.000000000 +0200
+++ rsync-2.6.6_patch/sender.c 2006-01-07 14:28:06.000000000 +0100
@@ -37,6 +37,7 @@
extern int inplace;
extern int batch_fd;
extern int write_batch;
+extern int preserve_atime;
extern struct stats stats;
extern struct file_list *the_file_list;
extern char *log_format;
@@ -357,6 +358,14 @@
full_fname(fname));
}
}
+/* reset original access and modtime if preserve_atime=1 */
+ if (preserve_atime) {
+ if...
2007 Sep 22
0
rsync build on IA64 using icc
...40): remark #1419: external declaration in primary source file
extern int do_progress;
^
sender.c(41): remark #1419: external declaration in primary source file
extern int inplace;
^
sender.c(42): remark #1419: external declaration in primary source file
extern int batch_fd;
^
sender.c(43): remark #1419: external declaration in primary source file
extern int write_batch;
^
sender.c(44): remark #1419: external declaration in primary source file
extern struct stats stats;
^
sender.c(45): remark #1419: external decla...