tms               457 src/vfs/ftpfs/ftpfs_parse_ls.c     struct tm tms;
tms               488 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_sec = 30;            // seconds after the minute [0, 61]
tms               489 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_min = minute;        // minutes after the hour [0, 59]
tms               490 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_hour = hour;         // hour since midnight [0, 23]
tms               491 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mday = day;          // day of the month [1, 31]
tms               492 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mon = month - 1;     // months since January [0, 11]
tms               493 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_year = year - 1900;  // years since 1900
tms               494 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_isdst = -1;
tms               496 src/vfs/ftpfs/ftpfs_parse_ls.c     s->st_mtime = mktime (&tms);
tms               826 src/vfs/ftpfs/ftpfs_parse_ls.c     struct tm tms;
tms               862 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_sec = second;        // seconds after the minute [0, 61]
tms               863 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_min = minute;        // minutes after the hour [0, 59]
tms               864 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_hour = hour;         // hour since midnight [0, 23]
tms               865 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mday = day;          // day of the month [1, 31]
tms               866 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mon = month - 1;     // months since January [0, 11]
tms               867 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_year = year - 1900;  // years since 1900
tms               868 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_isdst = -1;
tms               869 src/vfs/ftpfs/ftpfs_parse_ls.c     mtime = mktime (&tms);
tms               929 src/vfs/ftpfs/ftpfs_parse_ls.c     struct tm tms;
tms               965 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_sec = 30;            // seconds after the minute [0, 61]
tms               966 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_min = minute;        // minutes after the hour [0, 59]
tms               967 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_hour = hour;         // hour since midnight [0, 23]
tms               968 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mday = day;          // day of the month [1, 31]
tms               969 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_mon = month - 1;     // months since January [0, 11]
tms               970 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_year = year - 1900;  // years since 1900
tms               971 src/vfs/ftpfs/ftpfs_parse_ls.c     tms.tm_isdst = -1;
tms               972 src/vfs/ftpfs/ftpfs_parse_ls.c     s->st_mtime = mktime (&tms);