Displaying 7 results from an estimated 7 matches for "fuzzy_basi".
Did you mean:
fuzzy_basis
2008 Mar 11
1
[PATCH] Add --no-y.
...a/options.c b/options.c
index 4ac8846..82597bf 100644
--- a/options.c
+++ b/options.c
@@ -577,6 +577,7 @@ static struct poptOption long_options[] = {
{"link-dest", 0, POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
{"fuzzy", 'y', POPT_ARG_VAL, &fuzzy_basis, 1, 0, 0 },
{"no-fuzzy", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
+ {"no-y", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
{"compress", 'z', POPT_ARG_NONE, 0, 'z', 0, 0 },
{"no-compress",...
2013 Oct 24
0
patch for combining detect-renamed and fileflags patches (fwd)
...-----------
--- detect-renamed.diff.orig 2013-09-29 07:02:08.000000000 +0400
+++ detect-renamed.diff 2013-10-24 18:42:22.000000000 +0400
@@ -42,15 +42,15 @@
diff --git a/compat.c b/compat.c
--- a/compat.c
+++ b/compat.c
-@@ -43,6 +43,7 @@ extern int checksum_seed;
+@@ -39,6 +39,7 @@
+ extern int fuzzy_basis;
+ extern int read_batch;
+ extern int delay_updates;
++extern int detect_renamed;
+ extern int checksum_seed;
extern int basis_dir_cnt;
extern int prune_empty_dirs;
- extern int protocol_version;
-+extern int detect_renamed;
- extern int protect_args;
- extern int preserve_uid;
- extern int p...
2020 Feb 06
0
[PATCH] Add support for zstd compression
...-skip-compress=LIST skip compressing files with a suffix in LIST\n");
rprintf(F," -C, --cvs-exclude auto-ignore files the same way CVS does\n");
@@ -968,6 +975,9 @@ static struct poptOption long_options[] = {
{"no-fuzzy", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
{"no-y", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
{"compress", 'z', POPT_ARG_NONE, 0, 'z', 0, 0 },
+#ifdef HAVE_LIBZSTD
+ {"zstd-compress", 'Z', POPT_ARG_NONE, 0, 'Z', 0, 0 },
+#endif...
2015 Nov 28
0
[PATCH] ignore-non-existing-directory: add variant of ignore-non-existing
...ignore_non_existing;
+ ignore_non_existing_dirs = -ignore_non_existing_dirs;
update_only = -update_only;
always_checksum = -always_checksum;
size_only = -size_only;
diff --git a/options.c b/options.c
index 7e93ea1..7c5c53b 100644
--- a/options.c
+++ b/options.c
@@ -114,6 +114,7 @@ int fuzzy_basis = 0;
size_t bwlimit_writemax = 0;
int ignore_existing = 0;
int ignore_non_existing = 0;
+int ignore_non_existing_dirs = 0;
int need_messages_from_generator = 0;
int max_delete = INT_MIN;
OFF_T max_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-fil...
2016 Jan 16
0
[PATCH v2, resend] ignore-non-existing-directory: add variant of ignore-non-existing
...ignore_non_existing;
+ ignore_non_existing_dirs = -ignore_non_existing_dirs;
update_only = -update_only;
always_checksum = -always_checksum;
size_only = -size_only;
diff --git a/options.c b/options.c
index 7e93ea1..7c5c53b 100644
--- a/options.c
+++ b/options.c
@@ -114,6 +114,7 @@ int fuzzy_basis = 0;
size_t bwlimit_writemax = 0;
int ignore_existing = 0;
int ignore_non_existing = 0;
+int ignore_non_existing_dirs = 0;
int need_messages_from_generator = 0;
int max_delete = INT_MIN;
OFF_T max_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-fil...
2015 Nov 28
0
[PATCH v2] ignore-non-existing-directory: add variant of ignore-non-existing
...ignore_non_existing;
+ ignore_non_existing_dirs = -ignore_non_existing_dirs;
update_only = -update_only;
always_checksum = -always_checksum;
size_only = -size_only;
diff --git a/options.c b/options.c
index 7e93ea1..7c5c53b 100644
--- a/options.c
+++ b/options.c
@@ -114,6 +114,7 @@ int fuzzy_basis = 0;
size_t bwlimit_writemax = 0;
int ignore_existing = 0;
int ignore_non_existing = 0;
+int ignore_non_existing_dirs = 0;
int need_messages_from_generator = 0;
int max_delete = INT_MIN;
OFF_T max_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-fil...
2007 Sep 22
0
rsync build on IA64 using icc
...external declaration in primary source file
extern int ignore_timeout;
^
generator.c(70): remark #1419: external declaration in primary source file
extern int protocol_version;
^
generator.c(71): remark #1419: external declaration in primary source file
extern int fuzzy_basis;
^
generator.c(72): remark #1419: external declaration in primary source file
extern int always_checksum;
^
generator.c(73): remark #1419: external declaration in primary source file
extern int checksum_len;
^
generator.c(74): remark #1419: external de...