Tue 04 Nov 2014 11:40:04 PM UTC, comment #2:
This seems to be fixed (if I understand the first bug report correctly).
This can be verified by checking the output of:
wget -q -O - ftp://ftp.gnu.org/gnu/ | grep -E "[0-9]{2}:[0-9]{2}"
With a current version of wget (1.16 in this case).
Timestamps with HH::MM are all present.
Fixed by:
commit e6b486fd930fea1a6edddf943c6385be8c74418e
Author: John Trengrove <jtrengrove@gmail.com>
Date: Sun Aug 1 22:55:53 2010 +0200
ftp: display hour:minute information if it is available.
For details see
git diff ca12585a0e221e31a59898fe33f1a0caf7918f26 e6b486fd930fea1a6edddf943c6385be8c74418e -- src/ftp-ls.c
But basically, what fixed the problem was:
@@ -907,7 +1139,7 @@ ftp_index (const char file, struct url u, struct fileinfo *f)
fprintf (fp, "%d %s %02d ", ptm->tm_year + 1900, months[ptm->tm_mon],
ptm->tm_mday);
- if (ptm->tm_hour)
+ if (f->ptype == TT_HOUR_MIN)
fprintf (fp, "%02d:%02d ", ptm->tm_hour, ptm->tm_min);
else
fprintf (fp, " ");
This bug report should be closed.
Best regards,
/Pär
|