Skip to content

Commit

Permalink
Merge branch 'fix'
Browse files Browse the repository at this point in the history
* fix:
  git-format-patch: Use rfc2822 compliant date.
  • Loading branch information
Junio C Hamano committed Apr 30, 2006
2 parents 8971920 + 262a6ef commit 66ae0c7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions git-format-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,10 @@ sub show_date {
}
my $t = $time + $minutes * 60;
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime($t);
return sprintf("%s %s %d %02d:%02d:%02d %d %+05d",
$weekday_names[$wday],
$month_names[$mon],
$mday, $hour, $min, $sec,
$year+1900, $tz);
return sprintf("%s, %d %s %d %02d:%02d:%02d %+05d",
$weekday_names[$wday], $mday,
$month_names[$mon], $year+1900,
$hour, $min, $sec, $tz);
}
print "From nobody Mon Sep 17 00:00:00 2001\n";
Expand Down

0 comments on commit 66ae0c7

Please sign in to comment.