aboutsummaryrefslogtreecommitdiffstats
path: root/compat.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-12-17 00:40:21 +0000
committerWayne Davison <wayned@samba.org>2006-12-17 00:40:21 +0000
commit6eee13cf580ef3270539098eead19259192aa497 (patch)
treeeac2a9cd7b504fb289420c0684b792d4a29fe0ca /compat.c
parent9602b5cfbde40d3e56e98b7b6002cfb421e91e50 (diff)
downloadandroid_external_rsync-6eee13cf580ef3270539098eead19259192aa497.tar.gz
android_external_rsync-6eee13cf580ef3270539098eead19259192aa497.tar.bz2
android_external_rsync-6eee13cf580ef3270539098eead19259192aa497.zip
Moved the flist_extra_cnt stuff from options.c to compat.c so that
the values will be computed separately for the sender and the receiver.
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/compat.c b/compat.c
index b22c983b..b090c2ad 100644
--- a/compat.c
+++ b/compat.c
@@ -23,6 +23,7 @@
#include "rsync.h"
int remote_protocol = 0;
+int flist_extra_cnt = 0; /* count of file-list extras that everyone gets */
extern int verbose;
extern int am_server;
@@ -39,6 +40,15 @@ extern char *dest_option;
void setup_protocol(int f_out,int f_in)
{
+ if (am_sender)
+ flist_extra_cnt += PTR_EXTRA_LEN;
+ else
+ flist_extra_cnt++;
+ if (preserve_uid)
+ preserve_uid = ++flist_extra_cnt;
+ if (preserve_gid)
+ preserve_gid = ++flist_extra_cnt;
+
if (remote_protocol == 0) {
if (!read_batch)
write_int(f_out, protocol_version);