diff -u backuppc-3.2.1/debian/changelog backuppc-3.2.1/debian/changelog only in patch2: unchanged: --- backuppc-3.2.1.orig/lib/BackupPC/CGI/RestoreFile.pm +++ backuppc-3.2.1/lib/BackupPC/CGI/RestoreFile.pm @@ -154,12 +154,12 @@ my $a = $view->fileAttrib($num, $share, $dir); if ( $dir =~ m{(^|/)\.\.(/|$)} || !defined($a) ) { $dir = decode_utf8($dir); - ErrorExit("Can't restore bad file ${EscHTML($dir)} ($num, $share)"); + ErrorExit("Can't restore bad file ${EscHTML($dir)} (${EscHTML($num)}, ${EscHTML($share)})"); } my $f = BackupPC::FileZIO->open($a->{fullPath}, 0, $a->{compress}); if ( !defined($f) ) { my $fullPath = decode_utf8($a->{fullPath}); - ErrorExit("Unable to open file ${EscHTML($fullPath)} ($num, $share)"); + ErrorExit("Unable to open file ${EscHTML($fullPath)} (${EscHTML($num)}, ${EscHTML($share)})"); } my $data; if ( !$skipHardLink && $a->{type} == BPC_FTYPE_HARDLINK ) {