Package: rsnapshot
Version: 1.2.1-1
Followup-For: Bug #339845

Hi,

This bug is fixed in upstream CVS.

Will there be a package update in the near future to include the fix? It's 
nearly 4 months since this bug was reported, and all that's required is
a two line patch (included in this report).

Kind regards,

-- 
Adam James.
--- rsnapshot-1.2.1/rsnapshot-program.pl        2006-02-18 11:53:12.000000000 
+0000
+++ rsnapshot-1.2.1.new/rsnapshot-program.pl    2006-02-18 13:20:54.000000000 
+0000
@@ -3217,6 +3217,10 @@
                return (0);
        }
        
+       # remove trailing slashes (for newer versions of GNU cp)
+       $src  = remove_trailing_slash($src);
+       $dest = remove_trailing_slash($dest);
+       
        # make the system call to GNU cp
        $result = system( $config_vars{'cmd_cp'}, '-al', "$src", "$dest" );
        if ($result != 0) {

Reply via email to