Displaying 3 results from an estimated 3 matches for "allow_inc_recurse".
2008 Mar 07
1
--server combined with -e option
...if SUBPROTOCOL_VERSION != 0
1789 if (protocol_version == PROTOCOL_VERSION) {
1790 x += snprintf(argstr+x, sizeof argstr - x,
1791 "%d.%d", PROTOCOL_VERSION, SUBPROTOCOL_VERSION);
1792 } else
1793 #endif
1794 argstr[x++] = '.';
1795 set_allow_inc_recurse();
1796 if (allow_inc_recurse)
1797 argstr[x++] = 'i';
1798 #if defined HAVE_LUTIMES && defined HAVE_UTIMES
1799 argstr[x++] = 'L';
1800 #endif
1801 argstr[x] = '\0';
The above "e.iL" definitely matches, so I know I'm close.
Is it...
2008 Mar 19
1
rsync --server -e VERSION issue
...'e';
if (protocol_version == PROTOCOL_VERSION) {
x += snprintf(argstr+x, sizeof argstr - x,
"%d.%d", PROTOCOL_VERSION, SUBPROTOCOL_VERSION);
} else
-#endif
argstr[x++] = '.';
+#endif
set_allow_inc_recurse();
if (allow_inc_recurse)
argstr[x++] = 'i';
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part.
Url : http://lists.samba.org/...
2013 Oct 24
0
patch for combining detect-renamed and fileflags patches (fwd)
...lay_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 preserve_gid;
-@@ -123,6 +124,7 @@ void set_allow_inc_recurse(void)
+@@ -125,6 +126,7 @@
allow_inc_recurse = 0;
else if (!am_sender
&& (delete_before || delete_after
@@ -61,15 +61,15 @@
diff --git a/delete.c b/delete.c
--- a/delete.c
+++ b/delete.c
-@@ -25,6 +25,7 @@
+@@ -23,6 +23,7 @@
+ #include "rsync.h"
+
extern int am_ro...