mirror of
https://github.com/mirror/wget.git
synced 2025-03-25 01:00:13 +08:00
tests/FTPServer.pm: Fix ftp tests for Windows
The Single Unix strftime format specifier %e is not supported by MS Windows. Instead we now use %d. Reported-By: Eli Zaretskii <eliz@gnu.org>
This commit is contained in:
parent
cfe7589397
commit
9ee2fdd50d
@ -918,7 +918,7 @@ sub _format_for_list
|
||||
$size = 0;
|
||||
}
|
||||
}
|
||||
my $date = strftime("%b %e %H:%M", localtime);
|
||||
my $date = strftime("%b %d %H:%M", localtime);
|
||||
return "$mode_str 1 0 0 $size $date $name";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user