Changeset 425 for trunk/src/sh_files.c


Ignore:
Timestamp:
Feb 20, 2013, 7:30:02 PM (12 years ago)
Author:
katerina
Message:

Fix for tickets #329, #330, #331, #332

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_files.c

    r405 r425  
    24502450  char          * tmpname;
    24512451  const char    * fileName;
     2452#if !defined(O_NOATIME)
    24522453  struct utimbuf  utime_buf;
     2454#endif
    24532455  static unsigned int state = 1;
    24542456  char            sc;
     
    26042606  /* reset the access time
    26052607   */
     2608#if !defined(O_NOATIME)
    26062609  if (class == SH_LEVEL_NOIGNORE && (theFile->check_mask & MODI_ATM) != 0)
    26072610    {
    26082611      utime_buf.actime   = (time_t) theFile->atime;
    26092612      utime_buf.modtime  = (time_t) theFile->mtime;
    2610 #if !defined(O_NOATIME)
     2613
    26112614      retry_aud_utime (FIL__, __LINE__, fullpath, &utime_buf);
    2612 #endif
    2613     }
     2615    }
     2616#endif
    26142617 
    26152618#if defined(HOST_IS_DARWIN)
Note: See TracChangeset for help on using the changeset viewer.