Merge topic 'hpux-libarchive-compile'

c1ddd77d libarchive: Fix compilation on Tru64 with F_SETTIMES
This commit is contained in:
Brad King 2014-06-09 10:36:13 -04:00 committed by CMake Topic Stage
commit f56e74ef56
1 changed files with 1 additions and 1 deletions

View File

@ -2878,7 +2878,7 @@ set_time_tru64(int fd, int mode, const char *name,
tstamp.mtime.tv_nsec = mtime_nsec;
tstamp.ctime.tv_nsec = ctime_nsec;
#else
tstamp.atimetv_usec = atime_nsec / 1000;
tstamp.atime.tv_usec = atime_nsec / 1000;
tstamp.mtime.tv_usec = mtime_nsec / 1000;
tstamp.ctime.tv_usec = ctime_nsec / 1000;
#endif