Ben Walton <bwalton@xxxxxxxxxxxxxxxxxx> wrote: > %z isn't available on all platforms in the date formatting > routines. Detect when %z is ignored and insert the > the proper value if necessary. > > Signed-off-by: Ben Walton <bwalton@xxxxxxxxxxxxxxxxxx> Hi Ben, Thanks for the patch. What about just removing strftime() entirely and making the %z workaround the standard code path so it gets used/tested more? I don't think there'd be a discernable overhead on a modern system and the ancient ones tend to stay around forever... I'd like to avoid rarely executed code paths if possible. > --- > git-svn.perl | 14 +++++++++++++- > 1 files changed, 13 insertions(+), 1 deletions(-) > > diff --git a/git-svn.perl b/git-svn.perl > index cbc5211..66f49b4 100755 > --- a/git-svn.perl > +++ b/git-svn.perl > @@ -4615,6 +4615,7 @@ package Git::SVN::Log; > use strict; > use warnings; > use POSIX qw/strftime/; > +use Time::Local; > use constant commit_log_separator => ('-' x 72) . "\n"; > use vars qw/$TZ $limit $color $pager $non_recursive $verbose $oneline > %rusers $show_commit $incremental/; > @@ -4721,7 +4722,18 @@ sub run_pager { > } > > sub format_svn_date { > - return strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)", localtime(shift)); > + my $timestr = strftime("%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)", localtime(shift)); > + > + # for systems without %z (solaris 8, 9, etc) > + if ($timestr =~ /%z/) { > + my $lt = time; > + my $gm = timelocal(gmtime($lt)); > + my $sign = qw( + + - )[ $lt <=> $gm ]; > + my $gmoff = sprintf("%s%02d%02d", $sign, (gmtime(abs($lt - $gm)))[2,1]); > + $timestr =~ s/%z/$gmoff/; > + } > + > + return $timestr; > } -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html