gen.pl: make the output date format work better
Follow-up to 15910dfd14
The previous strftime format used didn't work correctly on Windows, so
change to %B %d %Y which today looks like "September 29 2021".
Reported-by: Gisle Vanem
Bug: #7782
Closes #7793
This commit is contained in:
parent
f870715114
commit
0b2260b036
@ -46,7 +46,7 @@ my %protolong;
|
||||
my %catlong;
|
||||
|
||||
use POSIX qw(strftime);
|
||||
my $date = strftime "%b %e %Y", localtime;
|
||||
my $date = strftime "%B %d %Y", localtime;
|
||||
my $version = "unknown";
|
||||
|
||||
open(INC, "<../../include/curl/curlver.h");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user