X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-format-patch.sh;h=c077f44ca1637008b5c16c3d48294a2d268edc9e;hb=5c477b972583e96b65ef1613c5d0fb1b90af3d0e;hp=c7133bc12624a7d00ea8c36b8f55207c16127bf4;hpb=a549e11cc2fee10ddf66dd98ea79f7c624eee34e;p=git.git diff --git a/git-format-patch.sh b/git-format-patch.sh index c7133bc1..c077f44c 100755 --- a/git-format-patch.sh +++ b/git-format-patch.sh @@ -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";