This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=10ee6edfe1b681780ac5fb324100139eb94c2aee commit 10ee6edfe1b681780ac5fb324100139eb94c2aee Author: Guillem Jover <[email protected]> AuthorDate: Tue Sep 23 12:43:17 2025 +0200 perl: Place each statement into its own line (round two) This got missed in commit f92c3dd331a96468bf8d2a3e107c5d5039593f10. Do not concatenate different statements one after the other in the same line, which makes reading the code more difficult. --- dselect/methods/Dselect/Method/Ftp.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dselect/methods/Dselect/Method/Ftp.pm b/dselect/methods/Dselect/Method/Ftp.pm index fbed69f49..6ca545f71 100644 --- a/dselect/methods/Dselect/Method/Ftp.pm +++ b/dselect/methods/Dselect/Method/Ftp.pm @@ -211,7 +211,8 @@ sub do_mdtm { # Recognize time or year, and compute missing one. if ($year_or_time =~ /([0-9]{2}):([0-9]{2})/) { - $hours = 0 + $1; $minutes = 0 + $2; + $hours = 0 + $1; + $minutes = 0 + $2; my @this_date = gmtime(time()); my $this_month = $this_date[4]; my $this_year = $this_date[5]; @@ -221,7 +222,8 @@ sub do_mdtm { $year = $this_year; } } elsif ($year_or_time =~ / [0-9]{4}/) { - $hours = 0; $minutes = 0; + $hours = 0; + $minutes = 0; $year = $year_or_time - 1900; } else { die 'cannot parse year-or-time'; -- Dpkg.Org's dpkg

