Displaying 6 results from an estimated 6 matches for "ignore_non_existing".
2015 Nov 28
0
[PATCH] ignore-non-existing-directory: add variant of ignore-non-existing
...), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (ignore_non_existing > 0 && statret == -1 &&...
2016 Jan 16
0
[PATCH v2, resend] ignore-non-existing-directory: add variant of ignore-non-existing
...), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (ignore_non_existing > 0 && statret == -1 &&...
2015 Nov 28
0
[PATCH v2] ignore-non-existing-directory: add variant of ignore-non-existing
...), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (ignore_non_existing > 0 && statret == -1 &&...
2024 Mar 18
0
[PATCH] add option to skip files based on age/mtime
...) != -1) {
OFF_T save_max_size = max_size;
OFF_T save_min_size = min_size;
+ int save_max_age = max_age;
+ int save_min_age = min_age;
csum_length = SUM_LENGTH;
max_size = -1;
min_size = -1;
+ max_age = 0;
+ min_age = 0;
ignore_existing = -ignore_existing;
ignore_non_existing = -ignore_non_existing;
update_only = -update_only;
@@ -2184,6 +2207,8 @@ void check_for_finished_files(int itemizing, enum
logcode code, int check_redo)
csum_length = SHORT_SUM_LENGTH;
max_size = save_max_size;
min_size = save_min_size;
+ max_age = save_max_age;
+ min_age...
2010 Jul 09
8
DO NOT REPLY [Bug 7565] New: --check-point=<TIME> +options.c.patch +generator.c.patch
...ctory
(%s)" : "checkpoint: old item (%s), creation skipped", fname);
+ rprintf(FINFO, verbose > 1 ? " (%d > %d)\n" : "\n",
check_point, file->modtime);
+ }
+ if ( !is_dir ) return;
+ }
+
if (ignore_non_existing > 0 && statret == -1 && stat_errno == ENOENT) {
if (is_dir) {
if (is_dir < 0)
--------------------------------------------------------------------
USAGE example
DEBUG=0
src=asfasfasfasfa
dest=sfasfasf
if [ ! -d $src ]; then...
2007 Sep 22
0
rsync build on IA64 using icc
...419: external declaration in primary source file
extern int update_only;
^
generator.c(56): remark #1419: external declaration in primary source file
extern int ignore_existing;
^
generator.c(57): remark #1419: external declaration in primary source file
extern int ignore_non_existing;
^
generator.c(58): remark #1419: external declaration in primary source file
extern int inplace;
^
generator.c(59): remark #1419: external declaration in primary source file
extern int append_mode;
^
generator.c(60): remark #1419: external declaration...