From: Wayne Davison Date: Sun, 26 Apr 2020 21:05:27 +0000 (-0700) Subject: Some var cleanup; move test-util vars into t_stub.c. X-Git-Tag: v3.2.0pre1~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f14adfd75e72d3bf5833eebe85f3ed9c1b4cb477;p=thirdparty%2Frsync.git Some var cleanup; move test-util vars into t_stub.c. --- diff --git a/Makefile.in b/Makefile.in index 536be420..59649562 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,7 +46,7 @@ popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \ popt/popthelp.o popt/poptparse.o OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON_OBJ) $(LIBOBJ) @BUILD_ZLIB@ @BUILD_POPT@ -TLS_OBJ = tls.o syscall.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@ +TLS_OBJ = tls.o syscall.o t_stub.o lib/compat.o lib/snprintf.o lib/permstring.o lib/sysxattrs.o @BUILD_POPT@ # Programs we must have to run the test cases CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) getfsdev$(EXEEXT) \ @@ -127,7 +127,7 @@ getgroups$(EXEEXT): getgroups.o getfsdev$(EXEEXT): getfsdev.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getfsdev.o $(LIBS) -TRIMSLASH_OBJ = trimslash.o syscall.o lib/compat.o lib/snprintf.o +TRIMSLASH_OBJ = trimslash.o syscall.o t_stub.o lib/compat.o lib/snprintf.o trimslash$(EXEEXT): $(TRIMSLASH_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TRIMSLASH_OBJ) $(LIBS) @@ -283,7 +283,7 @@ check29: all $(CHECK_PROGS) $(CHECK_SYMLINKS) check30: all $(CHECK_PROGS) $(CHECK_SYMLINKS) rsync_bin=`pwd`/rsync$(EXEEXT) $(srcdir)/runtests.sh --protocol=30 -wildtest.o: wildtest.c lib/wildmatch.c rsync.h config.h +wildtest.o: wildtest.c t_stub.o lib/wildmatch.c rsync.h config.h wildtest$(EXEEXT): wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o lib/compat.o lib/snprintf.o @BUILD_POPT@ $(LIBS) diff --git a/log.c b/log.c index ae6214da..059df046 100644 --- a/log.c +++ b/log.c @@ -47,7 +47,6 @@ extern int64 total_data_written; extern int64 total_data_read; extern mode_t orig_umask; extern char *auth_user; -extern char *checksum_choice; extern char *stdout_format; extern char *logfile_format; extern char *logfile_name; diff --git a/t_stub.c b/t_stub.c index 84dd88f4..17baee82 100644 --- a/t_stub.c +++ b/t_stub.c @@ -28,9 +28,10 @@ int protect_args = 0; int module_id = -1; int relative_paths = 0; int module_dirlen = 0; -int preserve_acls = 0; int preserve_times = 0; int preserve_xattrs = 0; +int preserve_perms = 0; +int preserve_executability = 0; int open_noatime = 0; char *partial_dir; char *module_dir; diff --git a/t_unsafe.c b/t_unsafe.c index 4ab6850a..0071bf60 100644 --- a/t_unsafe.c +++ b/t_unsafe.c @@ -28,9 +28,6 @@ int am_root = 0; int am_sender = 1; int read_only = 0; int list_only = 0; -int human_readable = 0; -int preserve_perms = 0; -int preserve_executability = 0; short info_levels[COUNT_INFO], debug_levels[COUNT_DEBUG]; int diff --git a/tls.c b/tls.c index ac402eba..7d48dab8 100644 --- a/tls.c +++ b/tls.c @@ -49,11 +49,6 @@ int list_only = 0; int link_times = 0; int link_owner = 0; int nsec_times = 0; -int preserve_perms = 0; -int preserve_executability = 0; -int preallocate_files = 0; -int open_noatime = 0; -int inplace = 0; #ifdef SUPPORT_XATTRS diff --git a/trimslash.c b/trimslash.c index 60a746cb..1ec928ca 100644 --- a/trimslash.c +++ b/trimslash.c @@ -26,11 +26,6 @@ int am_root = 0; int am_sender = 1; int read_only = 1; int list_only = 0; -int preserve_perms = 0; -int preserve_executability = 0; -int preallocate_files = 0; -int open_noatime = 0; -int inplace = 0; int main(int argc, char **argv)