From bfefcfa041f98bd1357d597d27f2cae44ec00463 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 24 Feb 2020 15:17:56 +0100 Subject: [PATCH] Bug 24696: Use strftime Seems easier to me. --- installer/data/mysql/updatedatabase.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 3e835ea4d6..252bb46f2d 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -21018,8 +21018,7 @@ sub NewVersion { $descriptions = [ $descriptions ]; } my $first = 1; - my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); - my $time = sprintf ( "%02d:%02d:%02d", $hour,$min,$sec); + my $time = POSIX::strftime("%H:%M:%S",localtime); for my $description ( @$descriptions ) { if ( @$descriptions > 1 ) { if ( $first ) { -- 2.11.0