mirror of
https://github.com/curl/curl.git
synced 2026-07-24 08:47:50 +03:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue