Changes between Initial Version and Version 1 of Ticket #4260


Ignore:
Timestamp:
07/13/21 18:03:57 (3 years ago)
Author:
andrew_b
Comment:

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  
    11When 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{{{ 
    33      if (vfs_parse_month (t, &date)) 
    44          date.tm_mon = 0; 
    5  
     5}}} 
    66should be changed to  
    7  
     7{{{ 
    88      if (!vfs_parse_month (t, &date)) 
    99          date.tm_mon = 0; 
    10  
     10}}} 
    1111The version is 4.8.26-221-g0c04e2382.