Hello community,

here is the log from the commit of package rsnapshot for openSUSE:Factory 
checked in at 2015-12-23 09:57:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rsnapshot (Old)
 and      /work/SRC/openSUSE:Factory/.rsnapshot.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rsnapshot"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rsnapshot/rsnapshot.changes      2015-10-06 
13:26:07.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rsnapshot.new/rsnapshot.changes 2015-12-23 
09:57:32.000000000 +0100
@@ -1,0 +2,7 @@
+Tue Dec 22 23:21:04 UTC 2015 - [email protected]
+
+- Update to 1.4.2
+  * Fix double 8 bit shift bug introduced with github issue #65.
+    Refs github issues #102, #103, #114, #118
+
+-------------------------------------------------------------------

Old:
----
  rsnapshot-1.4.1.tar.gz

New:
----
  rsnapshot-1.4.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rsnapshot.spec ++++++
--- /var/tmp/diff_new_pack.jZWwaF/_old  2015-12-23 09:57:33.000000000 +0100
+++ /var/tmp/diff_new_pack.jZWwaF/_new  2015-12-23 09:57:33.000000000 +0100
@@ -17,13 +17,13 @@
 
 
 Name:           rsnapshot
-Version:        1.4.1
+Version:        1.4.2
 Release:        0
 Summary:        Backup program using hardlinks
 License:        GPL-2.0+
 Group:          Productivity/Archiving/Backup
 Url:            http://www.rsnapshot.org/
-Source0:        http://rsnapshot.org/downloads/%{name}-%{version}.tar.gz
+Source0:        
https://github.com/rsnapshot/rsnapshot/releases/download/%{version}/%{name}-%{version}.tar.gz
 Source1:        rsnapshot.logrotate
 Patch1:         rsnapshot-config.patch
 BuildRequires:  logrotate

++++++ rsnapshot-1.4.1.tar.gz -> rsnapshot-1.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/ChangeLog 
new/rsnapshot-1.4.2/ChangeLog
--- old/rsnapshot-1.4.1/ChangeLog       2015-08-17 17:05:32.000000000 +0200
+++ new/rsnapshot-1.4.2/ChangeLog       2015-12-12 00:55:44.000000000 +0100
@@ -3,8 +3,11 @@
 http://www.rsnapshot.org/
 ------------------------------------------------------------------------------
 
-VERSION 1.4.1
+current master
 ------------------------------------------------------------------------------
+- Display warning, when the verbosity is set multiple times (e.g. on
+  command-line and logfile at the same time)
+- Changed maintainership in all files.
 - Capture rsync's output right (Github issue 102)
 
 VERSION 1.4.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/Makefile.am 
new/rsnapshot-1.4.2/Makefile.am
--- old/rsnapshot-1.4.1/Makefile.am     2015-08-17 17:05:32.000000000 +0200
+++ new/rsnapshot-1.4.2/Makefile.am     2015-12-12 00:55:44.000000000 +0100
@@ -9,11 +9,11 @@
 rsnapshot.1 : rsnapshot
        @# perl 5.8 for this
        pod2man -c 'rsnapshot-tools' -n 'rsnapshot' -r 'rsnapshot-tools' 
rsnapshot > rsnapshot.1
-       
+
 rsnapshot-diff.1 : rsnapshot-diff
        @# perl 5.8 for this
        pod2man -c 'rsnapshot-tools' -n 'rsnapshot-diff' -r 'rsnapshot-tools' 
rsnapshot-diff > rsnapshot-diff.1
-       
+
 html: rsnapshot.html
 rsnapshot.html: rsnapshot
        pod2html rsnapshot | grep -v 'link rev' > rsnapshot.html
@@ -35,40 +35,40 @@
        rm -f t/support/etc/*.conf
        rm -f t/support/files/a/{1,2}
        rm -rf t/support/snapshots/*.*
-       
-       
+
+
 tar: rsnapshot-$(VERSION).tar.gz
        @touch tar
 
 rsnapshot-$(VERSION).tar.gz: $(man_MANS) Makefile $(bin_SCRIPTS) 
$(sysconf_DATA)
-       @echo building tar file 
+       @echo building tar file
        mkdir rsnapshot-$(VERSION)/
-       
+
        @# core files
-       cp -apr AUTHORS ChangeLog COPYING INSTALL.md Makefile.am README.md \
+       cp -a AUTHORS ChangeLog COPYING INSTALL.md Makefile.am README.md \
                rsnapshot.conf.default.in rsnapshot-diff.pl 
rsnapshot-program.pl \
                rsnapshot-$(VERSION)
 
        @# autoconf files
-       cp -apr configure.ac Makefile.am \
+       cp -a configure.ac Makefile.am \
                aclocal.m4 autom4te.cache configure install-sh Makefile.in 
missing \
                rsnapshot-$(VERSION)/
 
        @# documentation files
-       cp -apr docs \
+       cp -a docs \
                rsnapshot-$(VERSION)/
 
        @# utils
-       cp -apr utils/ \
+       cp -a utils/ \
                rsnapshot-$(VERSION)/
 
        @# testsuite
-       cp -apr t/ \
+       cp -a t/ \
        rsnapshot-$(VERSION)/
 
        @# remove git-files
        find rsnapshot-$(VERSION)/ -depth -name .gitignore -exec rm -rf {} \;
-       
+
        @# change ownership to root, and delete build dir
        fakeroot chown -R root:root rsnapshot-$(VERSION)/
        rm -f rsnapshot-$(VERSION).tar.gz
@@ -89,4 +89,3 @@
 bin_SCRIPTS = rsnapshot rsnapshot-diff
 man_MANS = rsnapshot.1 rsnapshot-diff.1
 sysconf_DATA = rsnapshot.conf.default
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/Makefile.in 
new/rsnapshot-1.4.2/Makefile.in
--- old/rsnapshot-1.4.1/Makefile.in     2015-08-17 17:05:35.000000000 +0200
+++ new/rsnapshot-1.4.2/Makefile.in     2015-12-12 00:55:47.000000000 +0100
@@ -74,27 +74,26 @@
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
 CONFIG_CLEAN_FILES = rsnapshot rsnapshot-diff rsnapshot.conf.default \
-       t/ssh_args/ssh_args.t t/ssh_args/conf/ssh_args.conf \
-       t/snapshot_root_with_space/snapshot_root_with_space.t \
-       t/snapshot_root_with_space/conf/snapshot_root_with_space.conf \
-       t/rsync/rsync.t t/rsync/conf/rsync.conf \
-       t/rsync-exitcode/rsync-exitcode.t \
-       t/rsync-exitcode/conf/rsync-exitcode-good.conf \
-       t/rsync-exitcode/conf/rsync-exitcode-bad.conf \
-       t/relative_delete_bugfix/relative_delete_bugfix.t \
-       t/relative_delete_bugfix/conf/relative_delete_bugfix.conf \
        
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t \
        
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf
 \
-       t/gnu_cp/gnu_cp.t t/gnu_cp/conf/gnu_cp.conf \
-       t/configtest/configtest.t t/configtest/conf/configtest.conf \
+       t/relative_delete_bugfix/relative_delete_bugfix.t \
+       t/relative_delete_bugfix/conf/relative_delete_bugfix.conf \
+       t/snapshot_root_with_space/snapshot_root_with_space.t \
+       t/snapshot_root_with_space/conf/snapshot_root_with_space.conf \
+       t/cmd-post_pre-exec/cmd-post_pre-exec.t \
+       t/cmd-post_pre-exec/conf/pre-false-post-true.conf \
        t/cmd-post_pre-exec/conf/pre-true-post-true.conf \
        t/cmd-post_pre-exec/conf/pre-true-post-false.conf \
-       t/cmd-post_pre-exec/conf/pre-false-post-true.conf \
        t/cmd-post_pre-exec/conf/pre-false-post-false.conf \
-       t/cmd-post_pre-exec/cmd-post_pre-exec.t \
-       t/backup_exec/conf/backup_exec_fail.conf \
+       t/SysWrap.pm t/backup_exec/conf/backup_exec_fail.conf \
        t/backup_exec/conf/backup_exec.conf \
-       t/backup_exec/backup_exec.t t/SysWrap.pm
+       t/backup_exec/backup_exec.t t/rsync-exitcode/rsync-exitcode.t \
+       t/rsync-exitcode/conf/rsync-exitcode-good.conf \
+       t/rsync-exitcode/conf/rsync-exitcode-bad.conf \
+       t/configtest/configtest.t t/configtest/conf/configtest.conf \
+       t/rsync/rsync.t t/rsync/conf/rsync.conf t/gnu_cp/gnu_cp.t \
+       t/gnu_cp/conf/gnu_cp.conf t/ssh_args/conf/ssh_args.conf \
+       t/ssh_args/ssh_args.t
 CONFIG_CLEAN_VPATH_FILES =
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
@@ -306,57 +305,57 @@
        cd $(top_builddir) && $(SHELL) ./config.status $@
 rsnapshot.conf.default: $(top_builddir)/config.status 
$(srcdir)/rsnapshot.conf.default.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/ssh_args/ssh_args.t: $(top_builddir)/config.status 
$(top_srcdir)/t/ssh_args/ssh_args.t.in
+t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t: 
$(top_builddir)/config.status 
$(top_srcdir)/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/ssh_args/conf/ssh_args.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/ssh_args/conf/ssh_args.conf.in
+t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf:
 $(top_builddir)/config.status 
$(top_srcdir)/t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf.in
+       cd $(top_builddir) && $(SHELL) ./config.status $@
+t/relative_delete_bugfix/relative_delete_bugfix.t: 
$(top_builddir)/config.status 
$(top_srcdir)/t/relative_delete_bugfix/relative_delete_bugfix.t.in
+       cd $(top_builddir) && $(SHELL) ./config.status $@
+t/relative_delete_bugfix/conf/relative_delete_bugfix.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/relative_delete_bugfix/conf/relative_delete_bugfix.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
 t/snapshot_root_with_space/snapshot_root_with_space.t: 
$(top_builddir)/config.status 
$(top_srcdir)/t/snapshot_root_with_space/snapshot_root_with_space.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
 t/snapshot_root_with_space/conf/snapshot_root_with_space.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/snapshot_root_with_space/conf/snapshot_root_with_space.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/rsync/rsync.t: $(top_builddir)/config.status $(top_srcdir)/t/rsync/rsync.t.in
+t/cmd-post_pre-exec/cmd-post_pre-exec.t: $(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/cmd-post_pre-exec.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/rsync/conf/rsync.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync/conf/rsync.conf.in
+t/cmd-post_pre-exec/conf/pre-false-post-true.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-false-post-true.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/rsync-exitcode/rsync-exitcode.t: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/rsync-exitcode.t.in
+t/cmd-post_pre-exec/conf/pre-true-post-true.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-true-post-true.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/rsync-exitcode/conf/rsync-exitcode-good.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/conf/rsync-exitcode-good.conf.in
+t/cmd-post_pre-exec/conf/pre-true-post-false.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-true-post-false.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/rsync-exitcode/conf/rsync-exitcode-bad.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in
+t/cmd-post_pre-exec/conf/pre-false-post-false.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-false-post-false.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/relative_delete_bugfix/relative_delete_bugfix.t: 
$(top_builddir)/config.status 
$(top_srcdir)/t/relative_delete_bugfix/relative_delete_bugfix.t.in
+t/SysWrap.pm: $(top_builddir)/config.status $(top_srcdir)/t/SysWrap.pm.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/relative_delete_bugfix/conf/relative_delete_bugfix.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/relative_delete_bugfix/conf/relative_delete_bugfix.conf.in
+t/backup_exec/conf/backup_exec_fail.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/conf/backup_exec_fail.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t: 
$(top_builddir)/config.status 
$(top_srcdir)/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t.in
+t/backup_exec/conf/backup_exec.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/conf/backup_exec.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf:
 $(top_builddir)/config.status 
$(top_srcdir)/t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf.in
+t/backup_exec/backup_exec.t: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/backup_exec.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/gnu_cp/gnu_cp.t: $(top_builddir)/config.status 
$(top_srcdir)/t/gnu_cp/gnu_cp.t.in
+t/rsync-exitcode/rsync-exitcode.t: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/rsync-exitcode.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/gnu_cp/conf/gnu_cp.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/gnu_cp/conf/gnu_cp.conf.in
+t/rsync-exitcode/conf/rsync-exitcode-good.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/conf/rsync-exitcode-good.conf.in
+       cd $(top_builddir) && $(SHELL) ./config.status $@
+t/rsync-exitcode/conf/rsync-exitcode-bad.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
 t/configtest/configtest.t: $(top_builddir)/config.status 
$(top_srcdir)/t/configtest/configtest.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
 t/configtest/conf/configtest.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/configtest/conf/configtest.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/cmd-post_pre-exec/conf/pre-true-post-true.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-true-post-true.conf.in
-       cd $(top_builddir) && $(SHELL) ./config.status $@
-t/cmd-post_pre-exec/conf/pre-true-post-false.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-true-post-false.conf.in
-       cd $(top_builddir) && $(SHELL) ./config.status $@
-t/cmd-post_pre-exec/conf/pre-false-post-true.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-false-post-true.conf.in
-       cd $(top_builddir) && $(SHELL) ./config.status $@
-t/cmd-post_pre-exec/conf/pre-false-post-false.conf: 
$(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/conf/pre-false-post-false.conf.in
+t/rsync/rsync.t: $(top_builddir)/config.status $(top_srcdir)/t/rsync/rsync.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/cmd-post_pre-exec/cmd-post_pre-exec.t: $(top_builddir)/config.status 
$(top_srcdir)/t/cmd-post_pre-exec/cmd-post_pre-exec.t.in
+t/rsync/conf/rsync.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/rsync/conf/rsync.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/backup_exec/conf/backup_exec_fail.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/conf/backup_exec_fail.conf.in
+t/gnu_cp/gnu_cp.t: $(top_builddir)/config.status 
$(top_srcdir)/t/gnu_cp/gnu_cp.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/backup_exec/conf/backup_exec.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/conf/backup_exec.conf.in
+t/gnu_cp/conf/gnu_cp.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/gnu_cp/conf/gnu_cp.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/backup_exec/backup_exec.t: $(top_builddir)/config.status 
$(top_srcdir)/t/backup_exec/backup_exec.t.in
+t/ssh_args/conf/ssh_args.conf: $(top_builddir)/config.status 
$(top_srcdir)/t/ssh_args/conf/ssh_args.conf.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
-t/SysWrap.pm: $(top_builddir)/config.status $(top_srcdir)/t/SysWrap.pm.in
+t/ssh_args/ssh_args.t: $(top_builddir)/config.status 
$(top_srcdir)/t/ssh_args/ssh_args.t.in
        cd $(top_builddir) && $(SHELL) ./config.status $@
 install-binSCRIPTS: $(bin_SCRIPTS)
        @$(NORMAL_INSTALL)
@@ -787,29 +786,29 @@
        @touch tar
 
 rsnapshot-$(VERSION).tar.gz: $(man_MANS) Makefile $(bin_SCRIPTS) 
$(sysconf_DATA)
-       @echo building tar file 
+       @echo building tar file
        mkdir rsnapshot-$(VERSION)/
 
        @# core files
-       cp -apr AUTHORS ChangeLog COPYING INSTALL.md Makefile.am README.md \
+       cp -a AUTHORS ChangeLog COPYING INSTALL.md Makefile.am README.md \
                rsnapshot.conf.default.in rsnapshot-diff.pl 
rsnapshot-program.pl \
                rsnapshot-$(VERSION)
 
        @# autoconf files
-       cp -apr configure.ac Makefile.am \
+       cp -a configure.ac Makefile.am \
                aclocal.m4 autom4te.cache configure install-sh Makefile.in 
missing \
                rsnapshot-$(VERSION)/
 
        @# documentation files
-       cp -apr docs \
+       cp -a docs \
                rsnapshot-$(VERSION)/
 
        @# utils
-       cp -apr utils/ \
+       cp -a utils/ \
                rsnapshot-$(VERSION)/
 
        @# testsuite
-       cp -apr t/ \
+       cp -a t/ \
        rsnapshot-$(VERSION)/
 
        @# remove git-files
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/autom4te.cache/output.0 
new/rsnapshot-1.4.2/autom4te.cache/output.0
--- old/rsnapshot-1.4.1/autom4te.cache/output.0 2015-08-17 17:05:34.000000000 
+0200
+++ new/rsnapshot-1.4.2/autom4te.cache/output.0 2015-12-12 00:55:46.000000000 
+0100
@@ -1,6 +1,6 @@
 @%:@! /bin/sh
 @%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.68 for rsnapshot 1.4.1.
+@%:@ Generated by GNU Autoconf 2.68 for rsnapshot 1.4.2.
 @%:@
 @%:@ Report bugs to <[email protected]>.
 @%:@ 
@@ -559,8 +559,8 @@
 # Identity of this package.
 PACKAGE_NAME='rsnapshot'
 PACKAGE_TARNAME='rsnapshot'
-PACKAGE_VERSION='1.4.1'
-PACKAGE_STRING='rsnapshot 1.4.1'
+PACKAGE_VERSION='1.4.2'
+PACKAGE_STRING='rsnapshot 1.4.2'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1215,7 +1215,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures rsnapshot 1.4.1 to adapt to many kinds of systems.
+\`configure' configures rsnapshot 1.4.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1281,7 +1281,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of rsnapshot 1.4.1:";;
+     short | recursive ) echo "Configuration of rsnapshot 1.4.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1360,7 +1360,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-rsnapshot configure 1.4.1
+rsnapshot configure 1.4.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1377,7 +1377,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by rsnapshot $as_me 1.4.1, which was
+It was created by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2192,7 +2192,7 @@
 
 # Define the identity of the package.
  PACKAGE='rsnapshot'
- VERSION='1.4.1'
+ VERSION='1.4.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2982,57 +2982,57 @@
 
 # this part is autogenerated by autogen.sh
 
-ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
 
-ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/snapshot_root_with_space.t"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf"
 
-ac_config_files="$ac_config_files t/rsync/rsync.t"
+ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
 
-ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
 
-ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+ac_config_files="$ac_config_files t/SysWrap.pm"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
+ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
 
 ac_config_files="$ac_config_files t/configtest/configtest.t"
 
 ac_config_files="$ac_config_files t/configtest/conf/configtest.conf"
 
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
+ac_config_files="$ac_config_files t/rsync/rsync.t"
 
-ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
+ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
+ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
+ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
+ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
 
-ac_config_files="$ac_config_files t/SysWrap.pm"
+ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
 
 
 # this part had been autogenerated by autogen.sh
@@ -3594,7 +3594,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by rsnapshot $as_me 1.4.1, which was
+This file was extended by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3647,7 +3647,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-rsnapshot config.status 1.4.1
+rsnapshot config.status 1.4.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
@@ -3764,32 +3764,32 @@
     "rsnapshot") CONFIG_FILES="$CONFIG_FILES rsnapshot:rsnapshot-program.pl" ;;
     "rsnapshot-diff") CONFIG_FILES="$CONFIG_FILES 
rsnapshot-diff:rsnapshot-diff.pl" ;;
     "rsnapshot.conf.default") CONFIG_FILES="$CONFIG_FILES 
rsnapshot.conf.default:rsnapshot.conf.default.in" ;;
-    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
-    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
-    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
-    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
-    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
-    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
-    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
-    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
-    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
     
"t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t") 
CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t" ;;
     
"t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf")
 CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
 ;;
-    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
-    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
-    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
-    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
+    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
+    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
+    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
+    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-true-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-true.conf" ;;
     "t/cmd-post_pre-exec/conf/pre-true-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-false-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
     "t/backup_exec/conf/backup_exec_fail.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec_fail.conf" ;;
     "t/backup_exec/conf/backup_exec.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec.conf" ;;
     "t/backup_exec/backup_exec.t") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/backup_exec.t" ;;
-    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
+    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
+    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
+    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
+    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
+    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
+    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
+    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
+    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
 
   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/autom4te.cache/output.1 
new/rsnapshot-1.4.2/autom4te.cache/output.1
--- old/rsnapshot-1.4.1/autom4te.cache/output.1 2015-08-17 17:05:35.000000000 
+0200
+++ new/rsnapshot-1.4.2/autom4te.cache/output.1 2015-12-12 00:55:46.000000000 
+0100
@@ -1,6 +1,6 @@
 @%:@! /bin/sh
 @%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.68 for rsnapshot 1.4.1.
+@%:@ Generated by GNU Autoconf 2.68 for rsnapshot 1.4.2.
 @%:@
 @%:@ Report bugs to <[email protected]>.
 @%:@ 
@@ -559,8 +559,8 @@
 # Identity of this package.
 PACKAGE_NAME='rsnapshot'
 PACKAGE_TARNAME='rsnapshot'
-PACKAGE_VERSION='1.4.1'
-PACKAGE_STRING='rsnapshot 1.4.1'
+PACKAGE_VERSION='1.4.2'
+PACKAGE_STRING='rsnapshot 1.4.2'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1215,7 +1215,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures rsnapshot 1.4.1 to adapt to many kinds of systems.
+\`configure' configures rsnapshot 1.4.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1281,7 +1281,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of rsnapshot 1.4.1:";;
+     short | recursive ) echo "Configuration of rsnapshot 1.4.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1360,7 +1360,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-rsnapshot configure 1.4.1
+rsnapshot configure 1.4.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1377,7 +1377,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by rsnapshot $as_me 1.4.1, which was
+It was created by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2192,7 +2192,7 @@
 
 # Define the identity of the package.
  PACKAGE='rsnapshot'
- VERSION='1.4.1'
+ VERSION='1.4.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2982,57 +2982,57 @@
 
 # this part is autogenerated by autogen.sh
 
-ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
 
-ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/snapshot_root_with_space.t"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf"
 
-ac_config_files="$ac_config_files t/rsync/rsync.t"
+ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
 
-ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
 
-ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+ac_config_files="$ac_config_files t/SysWrap.pm"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
+ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
 
 ac_config_files="$ac_config_files t/configtest/configtest.t"
 
 ac_config_files="$ac_config_files t/configtest/conf/configtest.conf"
 
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
+ac_config_files="$ac_config_files t/rsync/rsync.t"
 
-ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
+ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
+ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
+ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
+ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
 
-ac_config_files="$ac_config_files t/SysWrap.pm"
+ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
 
 
 # this part had been autogenerated by autogen.sh
@@ -3594,7 +3594,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by rsnapshot $as_me 1.4.1, which was
+This file was extended by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3647,7 +3647,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-rsnapshot config.status 1.4.1
+rsnapshot config.status 1.4.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
@@ -3764,32 +3764,32 @@
     "rsnapshot") CONFIG_FILES="$CONFIG_FILES rsnapshot:rsnapshot-program.pl" ;;
     "rsnapshot-diff") CONFIG_FILES="$CONFIG_FILES 
rsnapshot-diff:rsnapshot-diff.pl" ;;
     "rsnapshot.conf.default") CONFIG_FILES="$CONFIG_FILES 
rsnapshot.conf.default:rsnapshot.conf.default.in" ;;
-    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
-    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
-    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
-    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
-    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
-    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
-    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
-    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
-    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
     
"t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t") 
CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t" ;;
     
"t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf")
 CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
 ;;
-    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
-    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
-    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
-    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
+    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
+    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
+    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
+    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-true-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-true.conf" ;;
     "t/cmd-post_pre-exec/conf/pre-true-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-false-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
     "t/backup_exec/conf/backup_exec_fail.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec_fail.conf" ;;
     "t/backup_exec/conf/backup_exec.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec.conf" ;;
     "t/backup_exec/backup_exec.t") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/backup_exec.t" ;;
-    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
+    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
+    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
+    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
+    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
+    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
+    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
+    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
+    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
 
   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/autom4te.cache/traces.1 
new/rsnapshot-1.4.2/autom4te.cache/traces.1
--- old/rsnapshot-1.4.1/autom4te.cache/traces.1 2015-08-17 17:05:35.000000000 
+0200
+++ new/rsnapshot-1.4.2/autom4te.cache/traces.1 2015-12-12 00:55:46.000000000 
+0100
@@ -340,32 +340,32 @@
 m4trace:configure.ac:295: -1- 
AC_CONFIG_FILES([rsnapshot-diff:rsnapshot-diff.pl])
 m4trace:configure.ac:298: -1- 
AC_CONFIG_FILES([rsnapshot.conf.default:rsnapshot.conf.default.in])
 m4trace:configure.ac:301: -1- m4_include([t/include.ac])
-m4trace:t/include.ac:4: -1- AC_CONFIG_FILES([t/ssh_args/ssh_args.t])
-m4trace:t/include.ac:5: -1- AC_CONFIG_FILES([t/ssh_args/conf/ssh_args.conf])
-m4trace:t/include.ac:6: -1- 
AC_CONFIG_FILES([t/snapshot_root_with_space/snapshot_root_with_space.t])
-m4trace:t/include.ac:7: -1- 
AC_CONFIG_FILES([t/snapshot_root_with_space/conf/snapshot_root_with_space.conf])
-m4trace:t/include.ac:8: -1- AC_CONFIG_FILES([t/rsync/rsync.t])
-m4trace:t/include.ac:9: -1- AC_CONFIG_FILES([t/rsync/conf/rsync.conf])
-m4trace:t/include.ac:10: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/rsync-exitcode.t])
-m4trace:t/include.ac:11: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/conf/rsync-exitcode-good.conf])
-m4trace:t/include.ac:12: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/conf/rsync-exitcode-bad.conf])
-m4trace:t/include.ac:13: -1- 
AC_CONFIG_FILES([t/relative_delete_bugfix/relative_delete_bugfix.t])
-m4trace:t/include.ac:14: -1- 
AC_CONFIG_FILES([t/relative_delete_bugfix/conf/relative_delete_bugfix.conf])
-m4trace:t/include.ac:15: -1- 
AC_CONFIG_FILES([t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t])
-m4trace:t/include.ac:16: -1- 
AC_CONFIG_FILES([t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf])
-m4trace:t/include.ac:17: -1- AC_CONFIG_FILES([t/gnu_cp/gnu_cp.t])
-m4trace:t/include.ac:18: -1- AC_CONFIG_FILES([t/gnu_cp/conf/gnu_cp.conf])
-m4trace:t/include.ac:19: -1- AC_CONFIG_FILES([t/configtest/configtest.t])
-m4trace:t/include.ac:20: -1- 
AC_CONFIG_FILES([t/configtest/conf/configtest.conf])
-m4trace:t/include.ac:21: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-true-post-true.conf])
-m4trace:t/include.ac:22: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-true-post-false.conf])
-m4trace:t/include.ac:23: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-false-post-true.conf])
-m4trace:t/include.ac:24: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-false-post-false.conf])
-m4trace:t/include.ac:25: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/cmd-post_pre-exec.t])
-m4trace:t/include.ac:26: -1- 
AC_CONFIG_FILES([t/backup_exec/conf/backup_exec_fail.conf])
-m4trace:t/include.ac:27: -1- 
AC_CONFIG_FILES([t/backup_exec/conf/backup_exec.conf])
-m4trace:t/include.ac:28: -1- AC_CONFIG_FILES([t/backup_exec/backup_exec.t])
-m4trace:t/include.ac:29: -1- AC_CONFIG_FILES([t/SysWrap.pm])
+m4trace:t/include.ac:4: -1- 
AC_CONFIG_FILES([t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t])
+m4trace:t/include.ac:5: -1- 
AC_CONFIG_FILES([t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf])
+m4trace:t/include.ac:6: -1- 
AC_CONFIG_FILES([t/relative_delete_bugfix/relative_delete_bugfix.t])
+m4trace:t/include.ac:7: -1- 
AC_CONFIG_FILES([t/relative_delete_bugfix/conf/relative_delete_bugfix.conf])
+m4trace:t/include.ac:8: -1- 
AC_CONFIG_FILES([t/snapshot_root_with_space/snapshot_root_with_space.t])
+m4trace:t/include.ac:9: -1- 
AC_CONFIG_FILES([t/snapshot_root_with_space/conf/snapshot_root_with_space.conf])
+m4trace:t/include.ac:10: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/cmd-post_pre-exec.t])
+m4trace:t/include.ac:11: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-false-post-true.conf])
+m4trace:t/include.ac:12: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-true-post-true.conf])
+m4trace:t/include.ac:13: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-true-post-false.conf])
+m4trace:t/include.ac:14: -1- 
AC_CONFIG_FILES([t/cmd-post_pre-exec/conf/pre-false-post-false.conf])
+m4trace:t/include.ac:15: -1- AC_CONFIG_FILES([t/SysWrap.pm])
+m4trace:t/include.ac:16: -1- 
AC_CONFIG_FILES([t/backup_exec/conf/backup_exec_fail.conf])
+m4trace:t/include.ac:17: -1- 
AC_CONFIG_FILES([t/backup_exec/conf/backup_exec.conf])
+m4trace:t/include.ac:18: -1- AC_CONFIG_FILES([t/backup_exec/backup_exec.t])
+m4trace:t/include.ac:19: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/rsync-exitcode.t])
+m4trace:t/include.ac:20: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/conf/rsync-exitcode-good.conf])
+m4trace:t/include.ac:21: -1- 
AC_CONFIG_FILES([t/rsync-exitcode/conf/rsync-exitcode-bad.conf])
+m4trace:t/include.ac:22: -1- AC_CONFIG_FILES([t/configtest/configtest.t])
+m4trace:t/include.ac:23: -1- 
AC_CONFIG_FILES([t/configtest/conf/configtest.conf])
+m4trace:t/include.ac:24: -1- AC_CONFIG_FILES([t/rsync/rsync.t])
+m4trace:t/include.ac:25: -1- AC_CONFIG_FILES([t/rsync/conf/rsync.conf])
+m4trace:t/include.ac:26: -1- AC_CONFIG_FILES([t/gnu_cp/gnu_cp.t])
+m4trace:t/include.ac:27: -1- AC_CONFIG_FILES([t/gnu_cp/conf/gnu_cp.conf])
+m4trace:t/include.ac:28: -1- AC_CONFIG_FILES([t/ssh_args/conf/ssh_args.conf])
+m4trace:t/include.ac:29: -1- AC_CONFIG_FILES([t/ssh_args/ssh_args.t])
 m4trace:configure.ac:304: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
 m4trace:configure.ac:304: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
 m4trace:configure.ac:304: -1- m4_pattern_allow([^LIB@&t@OBJS$])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/configure 
new/rsnapshot-1.4.2/configure
--- old/rsnapshot-1.4.1/configure       2015-08-17 17:05:35.000000000 +0200
+++ new/rsnapshot-1.4.2/configure       2015-12-12 00:55:46.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for rsnapshot 1.4.1.
+# Generated by GNU Autoconf 2.68 for rsnapshot 1.4.2.
 #
 # Report bugs to <[email protected]>.
 #
@@ -559,8 +559,8 @@
 # Identity of this package.
 PACKAGE_NAME='rsnapshot'
 PACKAGE_TARNAME='rsnapshot'
-PACKAGE_VERSION='1.4.1'
-PACKAGE_STRING='rsnapshot 1.4.1'
+PACKAGE_VERSION='1.4.2'
+PACKAGE_STRING='rsnapshot 1.4.2'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1215,7 +1215,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures rsnapshot 1.4.1 to adapt to many kinds of systems.
+\`configure' configures rsnapshot 1.4.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1281,7 +1281,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of rsnapshot 1.4.1:";;
+     short | recursive ) echo "Configuration of rsnapshot 1.4.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1360,7 +1360,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-rsnapshot configure 1.4.1
+rsnapshot configure 1.4.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1377,7 +1377,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by rsnapshot $as_me 1.4.1, which was
+It was created by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2192,7 +2192,7 @@
 
 # Define the identity of the package.
  PACKAGE='rsnapshot'
- VERSION='1.4.1'
+ VERSION='1.4.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2982,57 +2982,57 @@
 
 # this part is autogenerated by autogen.sh
 
-ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
 
-ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
+ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+
+ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/snapshot_root_with_space.t"
 
 ac_config_files="$ac_config_files 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf"
 
-ac_config_files="$ac_config_files t/rsync/rsync.t"
+ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
 
-ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
 
-ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
+ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/relative_delete_bugfix.t"
+ac_config_files="$ac_config_files t/SysWrap.pm"
 
-ac_config_files="$ac_config_files 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t"
+ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
 
-ac_config_files="$ac_config_files 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
+ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
+ac_config_files="$ac_config_files t/rsync-exitcode/rsync-exitcode.t"
 
-ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-good.conf"
+
+ac_config_files="$ac_config_files 
t/rsync-exitcode/conf/rsync-exitcode-bad.conf"
 
 ac_config_files="$ac_config_files t/configtest/configtest.t"
 
 ac_config_files="$ac_config_files t/configtest/conf/configtest.conf"
 
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-true-post-false.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-true.conf"
-
-ac_config_files="$ac_config_files 
t/cmd-post_pre-exec/conf/pre-false-post-false.conf"
+ac_config_files="$ac_config_files t/rsync/rsync.t"
 
-ac_config_files="$ac_config_files t/cmd-post_pre-exec/cmd-post_pre-exec.t"
+ac_config_files="$ac_config_files t/rsync/conf/rsync.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec_fail.conf"
+ac_config_files="$ac_config_files t/gnu_cp/gnu_cp.t"
 
-ac_config_files="$ac_config_files t/backup_exec/conf/backup_exec.conf"
+ac_config_files="$ac_config_files t/gnu_cp/conf/gnu_cp.conf"
 
-ac_config_files="$ac_config_files t/backup_exec/backup_exec.t"
+ac_config_files="$ac_config_files t/ssh_args/conf/ssh_args.conf"
 
-ac_config_files="$ac_config_files t/SysWrap.pm"
+ac_config_files="$ac_config_files t/ssh_args/ssh_args.t"
 
 
 # this part had been autogenerated by autogen.sh
@@ -3594,7 +3594,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by rsnapshot $as_me 1.4.1, which was
+This file was extended by rsnapshot $as_me 1.4.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3647,7 +3647,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-rsnapshot config.status 1.4.1
+rsnapshot config.status 1.4.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
@@ -3764,32 +3764,32 @@
     "rsnapshot") CONFIG_FILES="$CONFIG_FILES rsnapshot:rsnapshot-program.pl" ;;
     "rsnapshot-diff") CONFIG_FILES="$CONFIG_FILES 
rsnapshot-diff:rsnapshot-diff.pl" ;;
     "rsnapshot.conf.default") CONFIG_FILES="$CONFIG_FILES 
rsnapshot.conf.default:rsnapshot.conf.default.in" ;;
-    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
-    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
-    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
-    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
-    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
-    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
-    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
-    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
-    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
-    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
     
"t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t") 
CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t" ;;
     
"t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf")
 CONFIG_FILES="$CONFIG_FILES 
t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf"
 ;;
-    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
-    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
-    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
-    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/relative_delete_bugfix/relative_delete_bugfix.t") 
CONFIG_FILES="$CONFIG_FILES t/relative_delete_bugfix/relative_delete_bugfix.t" 
;;
+    "t/relative_delete_bugfix/conf/relative_delete_bugfix.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/relative_delete_bugfix/conf/relative_delete_bugfix.conf" ;;
+    "t/snapshot_root_with_space/snapshot_root_with_space.t") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/snapshot_root_with_space.t" ;;
+    "t/snapshot_root_with_space/conf/snapshot_root_with_space.conf") 
CONFIG_FILES="$CONFIG_FILES 
t/snapshot_root_with_space/conf/snapshot_root_with_space.conf" ;;
+    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-true-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-true.conf" ;;
     "t/cmd-post_pre-exec/conf/pre-true-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-true-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/conf/pre-false-post-true.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-true.conf" 
;;
     "t/cmd-post_pre-exec/conf/pre-false-post-false.conf") 
CONFIG_FILES="$CONFIG_FILES t/cmd-post_pre-exec/conf/pre-false-post-false.conf" 
;;
-    "t/cmd-post_pre-exec/cmd-post_pre-exec.t") CONFIG_FILES="$CONFIG_FILES 
t/cmd-post_pre-exec/cmd-post_pre-exec.t" ;;
+    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
     "t/backup_exec/conf/backup_exec_fail.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec_fail.conf" ;;
     "t/backup_exec/conf/backup_exec.conf") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/conf/backup_exec.conf" ;;
     "t/backup_exec/backup_exec.t") CONFIG_FILES="$CONFIG_FILES 
t/backup_exec/backup_exec.t" ;;
-    "t/SysWrap.pm") CONFIG_FILES="$CONFIG_FILES t/SysWrap.pm" ;;
+    "t/rsync-exitcode/rsync-exitcode.t") CONFIG_FILES="$CONFIG_FILES 
t/rsync-exitcode/rsync-exitcode.t" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-good.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-good.conf" ;;
+    "t/rsync-exitcode/conf/rsync-exitcode-bad.conf") 
CONFIG_FILES="$CONFIG_FILES t/rsync-exitcode/conf/rsync-exitcode-bad.conf" ;;
+    "t/configtest/configtest.t") CONFIG_FILES="$CONFIG_FILES 
t/configtest/configtest.t" ;;
+    "t/configtest/conf/configtest.conf") CONFIG_FILES="$CONFIG_FILES 
t/configtest/conf/configtest.conf" ;;
+    "t/rsync/rsync.t") CONFIG_FILES="$CONFIG_FILES t/rsync/rsync.t" ;;
+    "t/rsync/conf/rsync.conf") CONFIG_FILES="$CONFIG_FILES 
t/rsync/conf/rsync.conf" ;;
+    "t/gnu_cp/gnu_cp.t") CONFIG_FILES="$CONFIG_FILES t/gnu_cp/gnu_cp.t" ;;
+    "t/gnu_cp/conf/gnu_cp.conf") CONFIG_FILES="$CONFIG_FILES 
t/gnu_cp/conf/gnu_cp.conf" ;;
+    "t/ssh_args/conf/ssh_args.conf") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/conf/ssh_args.conf" ;;
+    "t/ssh_args/ssh_args.t") CONFIG_FILES="$CONFIG_FILES 
t/ssh_args/ssh_args.t" ;;
 
   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/rsnapshot-program.pl 
new/rsnapshot-1.4.2/rsnapshot-program.pl
--- old/rsnapshot-1.4.1/rsnapshot-program.pl    2015-08-17 17:05:32.000000000 
+0200
+++ new/rsnapshot-1.4.2/rsnapshot-program.pl    2015-12-12 00:55:44.000000000 
+0100
@@ -4,7 +4,7 @@
 #                                                                      #
 # rsnapshot                                                            #
 # by Nathan Rosenquist                                                 #
-# now maintained by David Keegel                                       #
+# now maintained by Benedikt Heine                                     #
 #                                                                      #
 # The official rsnapshot website is located at                         #
 # http://www.rsnapshot.org/                                            #
@@ -1442,6 +1442,8 @@
                        if (1 == is_valid_loglevel($value)) {
                                if (!defined($verbose)) {
                                        $verbose = $value;
+                               } elsif($verbose < $value ) {
+                                       print_warn("The verbosity-level is 
\"$verbose\" despite subsequent declaration at line $file_line_num.");
                                }
 
                                $line_syntax_ok = 1;
@@ -3918,19 +3920,14 @@
                        }
 
                        waitpid($pid, 0);
-                       $result = $? >> 8;
+                       $result = get_retval($?);
                        $tryCount += 1;
                }
 
                # now we see if rsync ran successfully, and what to do about it
                if ($result != 0) {
-
-                       # bitmask return value
-                       my $retval = get_retval($result);
-
                        # print warnings, and set this backup point to rollback 
if we're using --link-dest
-                       #
-                       handle_rsync_error($retval, $bp_ref);
+                       handle_rsync_error($result, $bp_ref);
                }
                else {
                        print_msg("rsync succeeded", 5);
@@ -6706,7 +6703,7 @@
 B<snapshot_root>      Local filesystem path to save all snapshots
 
 B<include_conf>       Include another file in the configuration at this point.
- 
+
 =over 4
 
 This is recursive, but you may need to be careful about paths when specifying
@@ -6781,7 +6778,7 @@
 =over 4
 
 Paths to lvcreate, lvremove, mount and umount commands, for use with Linux
-LVMs.  You may include options to the commands also. 
+LVMs.  You may include options to the commands also.
 The lvcreate, lvremove, mount and umount commands are required for
 managing snapshots of LVM volumes and are otherwise optional.
 
@@ -6962,7 +6959,7 @@
 
 List of long arguments to pass to rsync.  The default values are
     --delete --numeric-ids --relative --delete-excluded
-This means that the directory structure in each backup point destination 
+This means that the directory structure in each backup point destination
 will match that in the backup point source.
 
 Quotes are permitted in rsync_long_args, eg --rsync-path="sudo /usr/bin/rsync".
@@ -7027,7 +7024,7 @@
 
 =over 4
 
-Changes default behavior of rsnapshot and does not initially remove the 
+Changes default behavior of rsnapshot and does not initially remove the
 oldest snapshot. Instead it moves that directory to _delete.[processid] and
 continues as normal. Once the backup has been completed, the lockfile will
 be removed before rsnapshot starts deleting the directory.
@@ -7073,7 +7070,7 @@
 
 =over 4
 
-Mount point to use to temporarily mount the snapshot(s). 
+Mount point to use to temporarily mount the snapshot(s).
 
 =back
 
@@ -7173,8 +7170,8 @@
 
 =over 4
 
-Backs up the LVM logical volume called home, of volume group vg0, to 
-<snapshot_root>/<interval>.0/lvm-vg0/. Will create, mount, backup, unmount and 
remove an LVM 
+Backs up the LVM logical volume called home, of volume group vg0, to
+<snapshot_root>/<interval>.0/lvm-vg0/. Will create, mount, backup, unmount and 
remove an LVM
 snapshot for each lvm:// entry.
 
 =back
@@ -7339,7 +7336,7 @@
 (which usually includes deleting the oldest beta snapshot), then you
 should increase the time between the backup levels.
 Otherwise (assuming you have set the B<lockfile> parameter, as is recommended)
-your alpha snapshot will fail sometimes because the beta still has the lock.  
+your alpha snapshot will fail sometimes because the beta still has the lock.
 
 Remember that these are just the times that the program runs.
 To set the number of backups stored, set the B<retain> numbers in
@@ -7622,7 +7619,7 @@
 =over 4
 
 =item -
-Current rsnapshot maintainer
+Previous rsnapshot maintainer
 
 =item -
 Fixed race condition in lock file creation, improved error reporting
@@ -7635,6 +7632,15 @@
 
 =back
 
+Benedikt Heine <[email protected]>
+
+=over 4
+
+=item -
+Current rsnapshot maintainer
+
+=back
+
 Carl Wilhelm Soderstrom B<([email protected])>
 
 =over 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/rsnapshot.conf.default.in 
new/rsnapshot-1.4.2/rsnapshot.conf.default.in
--- old/rsnapshot-1.4.1/rsnapshot.conf.default.in       2015-08-17 
17:05:32.000000000 +0200
+++ new/rsnapshot-1.4.2/rsnapshot.conf.default.in       2015-12-12 
00:55:44.000000000 +0100
@@ -126,6 +126,12 @@
 #
 lockfile       /var/run/rsnapshot.pid
 
+# By default, rsnapshot check lockfile, check if PID is running
+# and if not, consider lockfile as stale, then start
+# Enabling this stop rsnapshot if PID in lockfile is not running
+#
+#stop_on_stale_lockfile                0
+
 # Default rsync args. All rsync commands have at least these options set.
 #
 #rsync_short_args      -a
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/SysWrap.pm 
new/rsnapshot-1.4.2/t/SysWrap.pm
--- old/rsnapshot-1.4.1/t/SysWrap.pm    2015-08-17 17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/SysWrap.pm    2015-12-12 00:55:48.000000000 +0100
@@ -31,12 +31,12 @@
 sub rsnapshot {
        my $args = shift(@_);
 
-       return execute("/home/travis/perl5/perlbrew/perls/5.16/bin/perl 
/home/travis/build/rsnapshot/rsnapshot//rsnapshot $args >/dev/null 2>&1");
+       return execute("/home/travis/perl5/perlbrew/perls/5.18/bin/perl 
/home/travis/build/rsnapshot/rsnapshot//rsnapshot $args >/dev/null 2>&1");
 }
 
 sub rsnapshot_output {
        my $args = shift(@_);
-       return `/home/travis/perl5/perlbrew/perls/5.16/bin/perl 
/home/travis/build/rsnapshot/rsnapshot//rsnapshot $args`;
+       return `/home/travis/perl5/perlbrew/perls/5.18/bin/perl 
/home/travis/build/rsnapshot/rsnapshot//rsnapshot $args`;
 }
 
 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/backup_exec/backup_exec.t 
new/rsnapshot-1.4.2/t/backup_exec/backup_exec.t
--- old/rsnapshot-1.4.1/t/backup_exec/backup_exec.t     2015-08-17 
17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/backup_exec/backup_exec.t     2015-12-12 
00:55:49.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 2;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/cmd-post_pre-exec/cmd-post_pre-exec.t 
new/rsnapshot-1.4.2/t/cmd-post_pre-exec/cmd-post_pre-exec.t
--- old/rsnapshot-1.4.1/t/cmd-post_pre-exec/cmd-post_pre-exec.t 2015-08-17 
17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/cmd-post_pre-exec/cmd-post_pre-exec.t 2015-12-12 
00:55:48.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 # Testing: Only pass test, if both cmd_preexec and cmd_postexec succeeds and 
the exit-code matches
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/configtest/configtest.t 
new/rsnapshot-1.4.2/t/configtest/configtest.t
--- old/rsnapshot-1.4.1/t/configtest/configtest.t       2015-08-17 
17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/configtest/configtest.t       2015-12-12 
00:55:49.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/gnu_cp/gnu_cp.t 
new/rsnapshot-1.4.2/t/gnu_cp/gnu_cp.t
--- old/rsnapshot-1.4.1/t/gnu_cp/gnu_cp.t       2015-08-17 17:05:37.000000000 
+0200
+++ new/rsnapshot-1.4.2/t/gnu_cp/gnu_cp.t       2015-12-12 00:55:49.000000000 
+0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 2;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/include.ac 
new/rsnapshot-1.4.2/t/include.ac
--- old/rsnapshot-1.4.1/t/include.ac    2015-08-17 17:05:32.000000000 +0200
+++ new/rsnapshot-1.4.2/t/include.ac    2015-12-12 00:55:44.000000000 +0100
@@ -1,31 +1,31 @@
 
 # this part is autogenerated by autogen.sh
 
-AC_CONFIG_FILES(t/ssh_args/ssh_args.t)
-AC_CONFIG_FILES(t/ssh_args/conf/ssh_args.conf)
-AC_CONFIG_FILES(t/snapshot_root_with_space/snapshot_root_with_space.t)
-AC_CONFIG_FILES(t/snapshot_root_with_space/conf/snapshot_root_with_space.conf)
-AC_CONFIG_FILES(t/rsync/rsync.t)
-AC_CONFIG_FILES(t/rsync/conf/rsync.conf)
-AC_CONFIG_FILES(t/rsync-exitcode/rsync-exitcode.t)
-AC_CONFIG_FILES(t/rsync-exitcode/conf/rsync-exitcode-good.conf)
-AC_CONFIG_FILES(t/rsync-exitcode/conf/rsync-exitcode-bad.conf)
-AC_CONFIG_FILES(t/relative_delete_bugfix/relative_delete_bugfix.t)
-AC_CONFIG_FILES(t/relative_delete_bugfix/conf/relative_delete_bugfix.conf)
 
AC_CONFIG_FILES(t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t)
 
AC_CONFIG_FILES(t/link-dest_-t_when_only_one_snapshot/conf/link-dest_-t_when_only_one_snapshot.conf)
-AC_CONFIG_FILES(t/gnu_cp/gnu_cp.t)
-AC_CONFIG_FILES(t/gnu_cp/conf/gnu_cp.conf)
-AC_CONFIG_FILES(t/configtest/configtest.t)
-AC_CONFIG_FILES(t/configtest/conf/configtest.conf)
+AC_CONFIG_FILES(t/relative_delete_bugfix/relative_delete_bugfix.t)
+AC_CONFIG_FILES(t/relative_delete_bugfix/conf/relative_delete_bugfix.conf)
+AC_CONFIG_FILES(t/snapshot_root_with_space/snapshot_root_with_space.t)
+AC_CONFIG_FILES(t/snapshot_root_with_space/conf/snapshot_root_with_space.conf)
+AC_CONFIG_FILES(t/cmd-post_pre-exec/cmd-post_pre-exec.t)
+AC_CONFIG_FILES(t/cmd-post_pre-exec/conf/pre-false-post-true.conf)
 AC_CONFIG_FILES(t/cmd-post_pre-exec/conf/pre-true-post-true.conf)
 AC_CONFIG_FILES(t/cmd-post_pre-exec/conf/pre-true-post-false.conf)
-AC_CONFIG_FILES(t/cmd-post_pre-exec/conf/pre-false-post-true.conf)
 AC_CONFIG_FILES(t/cmd-post_pre-exec/conf/pre-false-post-false.conf)
-AC_CONFIG_FILES(t/cmd-post_pre-exec/cmd-post_pre-exec.t)
+AC_CONFIG_FILES(t/SysWrap.pm)
 AC_CONFIG_FILES(t/backup_exec/conf/backup_exec_fail.conf)
 AC_CONFIG_FILES(t/backup_exec/conf/backup_exec.conf)
 AC_CONFIG_FILES(t/backup_exec/backup_exec.t)
-AC_CONFIG_FILES(t/SysWrap.pm)
+AC_CONFIG_FILES(t/rsync-exitcode/rsync-exitcode.t)
+AC_CONFIG_FILES(t/rsync-exitcode/conf/rsync-exitcode-good.conf)
+AC_CONFIG_FILES(t/rsync-exitcode/conf/rsync-exitcode-bad.conf)
+AC_CONFIG_FILES(t/configtest/configtest.t)
+AC_CONFIG_FILES(t/configtest/conf/configtest.conf)
+AC_CONFIG_FILES(t/rsync/rsync.t)
+AC_CONFIG_FILES(t/rsync/conf/rsync.conf)
+AC_CONFIG_FILES(t/gnu_cp/gnu_cp.t)
+AC_CONFIG_FILES(t/gnu_cp/conf/gnu_cp.conf)
+AC_CONFIG_FILES(t/ssh_args/conf/ssh_args.conf)
+AC_CONFIG_FILES(t/ssh_args/ssh_args.t)
 
 # this part had been autogenerated by autogen.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t
 
new/rsnapshot-1.4.2/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t
--- 
old/rsnapshot-1.4.1/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t
     2015-08-17 17:05:37.000000000 +0200
+++ 
new/rsnapshot-1.4.2/t/link-dest_-t_when_only_one_snapshot/link-dest_-t_when_only_one_snapshot.t
     2015-12-12 00:55:48.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 5;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/relative_delete_bugfix/relative_delete_bugfix.t 
new/rsnapshot-1.4.2/t/relative_delete_bugfix/relative_delete_bugfix.t
--- old/rsnapshot-1.4.1/t/relative_delete_bugfix/relative_delete_bugfix.t       
2015-08-17 17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/relative_delete_bugfix/relative_delete_bugfix.t       
2015-12-12 00:55:48.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 7;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/rsync/rsync.t 
new/rsnapshot-1.4.2/t/rsync/rsync.t
--- old/rsnapshot-1.4.1/t/rsync/rsync.t 2015-08-17 17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/rsync/rsync.t 2015-12-12 00:55:49.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/rsync-exitcode/conf/rsync-exitcode-bad.conf 
new/rsnapshot-1.4.2/t/rsync-exitcode/conf/rsync-exitcode-bad.conf
--- old/rsnapshot-1.4.1/t/rsync-exitcode/conf/rsync-exitcode-bad.conf   
2015-08-17 17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/rsync-exitcode/conf/rsync-exitcode-bad.conf   
2015-12-12 00:55:49.000000000 +0100
@@ -1,5 +1,5 @@
 config_version 1.2
 snapshot_root  /home/travis/build/rsnapshot/rsnapshot//t/support/snapshots
-cmd_rsync              false
+cmd_rsync              /bin/false
 interval               hourly  6
 backup                 
/home/travis/build/rsnapshot/rsnapshot//t//support/files/a/     localhost/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in 
new/rsnapshot-1.4.2/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in
--- old/rsnapshot-1.4.1/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in        
2015-08-17 17:05:32.000000000 +0200
+++ new/rsnapshot-1.4.2/t/rsync-exitcode/conf/rsync-exitcode-bad.conf.in        
2015-12-12 00:55:44.000000000 +0100
@@ -1,5 +1,5 @@
 config_version 1.2
 snapshot_root  @SNAP@
-cmd_rsync              false
+cmd_rsync              /bin/false
 interval               hourly  6
 backup                 @TEST@/support/files/a/ localhost/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/rsync-exitcode/rsync-exitcode.t 
new/rsnapshot-1.4.2/t/rsync-exitcode/rsync-exitcode.t
--- old/rsnapshot-1.4.1/t/rsync-exitcode/rsync-exitcode.t       2015-08-17 
17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/rsync-exitcode/rsync-exitcode.t       2015-12-12 
00:55:49.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 2;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rsnapshot-1.4.1/t/snapshot_root_with_space/snapshot_root_with_space.t 
new/rsnapshot-1.4.2/t/snapshot_root_with_space/snapshot_root_with_space.t
--- old/rsnapshot-1.4.1/t/snapshot_root_with_space/snapshot_root_with_space.t   
2015-08-17 17:05:37.000000000 +0200
+++ new/rsnapshot-1.4.2/t/snapshot_root_with_space/snapshot_root_with_space.t   
2015-12-12 00:55:48.000000000 +0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 5;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsnapshot-1.4.1/t/ssh_args/ssh_args.t 
new/rsnapshot-1.4.2/t/ssh_args/ssh_args.t
--- old/rsnapshot-1.4.1/t/ssh_args/ssh_args.t   2015-08-17 17:05:37.000000000 
+0200
+++ new/rsnapshot-1.4.2/t/ssh_args/ssh_args.t   2015-12-12 00:55:49.000000000 
+0100
@@ -1,4 +1,4 @@
-#!/home/travis/perl5/perlbrew/perls/5.16/bin/perl
+#!/home/travis/perl5/perlbrew/perls/5.18/bin/perl
 
 use strict;
 use Test::More tests => 2;


Reply via email to