Home | History | Annotate | Download | only in jhead

Lines Matching full:mtime

1145                 struct utimbuf mtime;
1148 mtime.actime = buf.st_mtime;
1149 mtime.modtime = buf.st_mtime;
1151 utime(FileName, &mtime);
1169 struct utimbuf mtime;
1177 mtime.actime = UnixTime;
1178 mtime.modtime = UnixTime;
1180 if (utime(FileName, &mtime) != 0){