Changes between Initial Version and Version 1 of Ticket #4260
- Timestamp:
- 07/13/21 18:03:57 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4260
- Property Owner set to andrew_b
- Property Status changed from new to accepted
- Property Version changed from master to 4.8.26
- Property Milestone changed from Future Releases to 4.8.27
-
Ticket #4260 – Description
initial v1 1 1 When browsing FTP servers, the files' dates always have January as a month. I found the location of this problem. In the file src/mc/src/vfs/ftpfs/ftpfs_parse_ls.c: 2 2 {{{ 3 3 if (vfs_parse_month (t, &date)) 4 4 date.tm_mon = 0; 5 5 }}} 6 6 should be changed to 7 7 {{{ 8 8 if (!vfs_parse_month (t, &date)) 9 9 date.tm_mon = 0; 10 10 }}} 11 11 The version is 4.8.26-221-g0c04e2382.