From: Evan Hunt Date: Tue, 16 Apr 2013 20:34:46 +0000 (-0700) Subject: [master] bugfix in contrib/check5011.pl X-Git-Tag: v9.10.0a1~409 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=2b5ae1b2a33273930962b0b4ccfc3aa77170acfb;p=thirdparty%2Fbind9.git [master] bugfix in contrib/check5011.pl --- diff --git a/contrib/check5011.pl b/contrib/check5011.pl index 70d873a087d..5306e8bfb26 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; }