From: uid65697 Date: Thu, 25 Dec 2003 10:20:32 +0000 (+0000) Subject: (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New members. X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftar;a=commitdiff_plain;h=ad37f06975a7f2df15d3bd8c1295570abc8a1044 (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New members. --- diff --git a/src/tar.h b/src/tar.h index 449a938..25b65b1 100644 --- a/src/tar.h +++ b/src/tar.h @@ -278,6 +278,11 @@ struct tar_stat_info char *gname; /* group name of owner */ struct stat stat; /* regular filesystem stat */ + /* Nanosecond parts of file timestamps (if available) */ + unsigned long atime_nsec; + unsigned long mtime_nsec; + unsigned long ctime_nsec; + off_t archive_file_size; /* Size of file as stored in the archive. Equals stat.st_size for non-sparse files */