Changeset 425 for trunk/src/sh_files.c
- Timestamp:
- Feb 20, 2013, 7:30:02 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_files.c
r405 r425 2450 2450 char * tmpname; 2451 2451 const char * fileName; 2452 #if !defined(O_NOATIME) 2452 2453 struct utimbuf utime_buf; 2454 #endif 2453 2455 static unsigned int state = 1; 2454 2456 char sc; … … 2604 2606 /* reset the access time 2605 2607 */ 2608 #if !defined(O_NOATIME) 2606 2609 if (class == SH_LEVEL_NOIGNORE && (theFile->check_mask & MODI_ATM) != 0) 2607 2610 { 2608 2611 utime_buf.actime = (time_t) theFile->atime; 2609 2612 utime_buf.modtime = (time_t) theFile->mtime; 2610 #if !defined(O_NOATIME) 2613 2611 2614 retry_aud_utime (FIL__, __LINE__, fullpath, &utime_buf); 2612 #endif 2613 } 2615 } 2616 #endif 2614 2617 2615 2618 #if defined(HOST_IS_DARWIN)
Note:
See TracChangeset
for help on using the changeset viewer.