File tree 6 files changed +5
-18
lines changed
6 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
46
46
popt/popthelp.o popt/poptparse.o
47
47
OBJS =$(OBJS1 ) $(OBJS2 ) $(OBJS3 ) $(DAEMON_OBJ ) $(LIBOBJ ) @BUILD_ZLIB@ @BUILD_POPT@
48
48
49
- TLS_OBJ = tls.o syscall.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@
49
+ TLS_OBJ = tls.o syscall.o t_stub.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@
50
50
51
51
# Programs we must have to run the test cases
52
52
CHECK_PROGS = rsync$(EXEEXT ) tls$(EXEEXT ) getgroups$(EXEEXT ) getfsdev$(EXEEXT ) \
@@ -127,7 +127,7 @@ getgroups$(EXEEXT): getgroups.o
127
127
getfsdev$(EXEEXT ) : getfsdev.o
128
128
$(CC ) $(CFLAGS ) $(LDFLAGS ) -o $@ getfsdev.o $(LIBS )
129
129
130
- TRIMSLASH_OBJ = trimslash.o syscall.o lib/compat.o lib/snprintf.o
130
+ TRIMSLASH_OBJ = trimslash.o syscall.o t_stub.o lib/compat.o lib/snprintf.o
131
131
trimslash$(EXEEXT ) : $(TRIMSLASH_OBJ )
132
132
$(CC ) $(CFLAGS ) $(LDFLAGS ) -o $@ $(TRIMSLASH_OBJ ) $(LIBS )
133
133
@@ -283,7 +283,7 @@ check29: all $(CHECK_PROGS) $(CHECK_SYMLINKS)
283
283
check30 : all $(CHECK_PROGS ) $(CHECK_SYMLINKS )
284
284
rsync_bin=` pwd` /rsync$(EXEEXT ) $(srcdir ) /runtests.sh --protocol=30
285
285
286
- wildtest.o : wildtest.c lib/wildmatch.c rsync.h config.h
286
+ wildtest.o : wildtest.c t_stub.o lib/wildmatch.c rsync.h config.h
287
287
wildtest$(EXEEXT ) : wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@
288
288
$(CC ) $(CFLAGS ) $(LDFLAGS ) -o $@ wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(LIBS )
289
289
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ extern int64 total_data_written;
47
47
extern int64 total_data_read ;
48
48
extern mode_t orig_umask ;
49
49
extern char * auth_user ;
50
- extern char * checksum_choice ;
51
50
extern char * stdout_format ;
52
51
extern char * logfile_format ;
53
52
extern char * logfile_name ;
Original file line number Diff line number Diff line change @@ -28,9 +28,10 @@ int protect_args = 0;
28
28
int module_id = -1 ;
29
29
int relative_paths = 0 ;
30
30
int module_dirlen = 0 ;
31
- int preserve_acls = 0 ;
32
31
int preserve_times = 0 ;
33
32
int preserve_xattrs = 0 ;
33
+ int preserve_perms = 0 ;
34
+ int preserve_executability = 0 ;
34
35
int open_noatime = 0 ;
35
36
char * partial_dir ;
36
37
char * module_dir ;
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ int am_root = 0;
28
28
int am_sender = 1 ;
29
29
int read_only = 0 ;
30
30
int list_only = 0 ;
31
- int human_readable = 0 ;
32
- int preserve_perms = 0 ;
33
- int preserve_executability = 0 ;
34
31
short info_levels [COUNT_INFO ], debug_levels [COUNT_DEBUG ];
35
32
36
33
int
Original file line number Diff line number Diff line change @@ -49,11 +49,6 @@ int list_only = 0;
49
49
int link_times = 0 ;
50
50
int link_owner = 0 ;
51
51
int nsec_times = 0 ;
52
- int preserve_perms = 0 ;
53
- int preserve_executability = 0 ;
54
- int preallocate_files = 0 ;
55
- int open_noatime = 0 ;
56
- int inplace = 0 ;
57
52
58
53
#ifdef SUPPORT_XATTRS
59
54
Original file line number Diff line number Diff line change @@ -26,11 +26,6 @@ int am_root = 0;
26
26
int am_sender = 1 ;
27
27
int read_only = 1 ;
28
28
int list_only = 0 ;
29
- int preserve_perms = 0 ;
30
- int preserve_executability = 0 ;
31
- int preallocate_files = 0 ;
32
- int open_noatime = 0 ;
33
- int inplace = 0 ;
34
29
35
30
int
36
31
main (int argc , char * * argv )
You can’t perform that action at this time.
0 commit comments