This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=9e34f5c14ad086fa7f5e77afdaea71aefe796ffc commit 9e34f5c14ad086fa7f5e77afdaea71aefe796ffc Author: Guillem Jover <[email protected]> AuthorDate: Mon Nov 2 09:23:36 2020 +0100 Dpkg::Source::Package: Call syserr() instead of syserror() Ref: #849752 Reported-by: Drew Parsons <[email protected]> --- scripts/Dpkg/Source/Package.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dpkg/Source/Package.pm b/scripts/Dpkg/Source/Package.pm index 19a49eeba..1c9bc41fc 100644 --- a/scripts/Dpkg/Source/Package.pm +++ b/scripts/Dpkg/Source/Package.pm @@ -544,7 +544,7 @@ sub extract { my $dst = File::Spec->catfile($destdir, $orig); if (not check_files_are_the_same($src, $dst, 1)) { cp($src, $dst) - or syserror(g_('cannot copy %s to %s'), $src, $dst); + or syserr(g_('cannot copy %s to %s'), $src, $dst); } } } -- Dpkg.Org's dpkg

