From 39210f43d329b08cb2a40b83573e2d9d563c6330 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Tue, 16 Apr 2013 13:36:07 -0700 Subject: [PATCH] [v9_9] bugfix in contrib/check5011.pl --- contrib/check5011.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/check5011.pl b/contrib/check5011.pl index 70d873a087..5306e8bfb2 100644 --- a/contrib/check5011.pl +++ b/contrib/check5011.pl @@ -9,7 +9,7 @@ my $now = strftime "%Y%m%d%H%M%S", gmtime; sub ext8601 ($) { my $d = shift; $d =~ s{(....)(..)(..)(..)(..)(..)} - {$1-$2-$3.$4:$5:$6}; + {$1-$2-$3.$4:$5:$6+0000}; return $d; }