From 3abb526f86a27b005f352fb91f605228876fa8f7 Mon Sep 17 00:00:00 2001 From: mckusick Date: Wed, 17 Jul 2002 02:03:19 +0000 Subject: Change utimes to set the file creation time (for filesystems that support creation times such as UFS2) to the value of the modification time if the value of the modification time is older than the current creation time. See utimes(2) for further details. Sponsored by: DARPA & NAI Labs. --- include/protocols/dumprestore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/protocols/dumprestore.h b/include/protocols/dumprestore.h index 6daecc1..6abf922 100644 --- a/include/protocols/dumprestore.h +++ b/include/protocols/dumprestore.h @@ -93,8 +93,8 @@ union u_spcl { int32_t c_mtimensec; /* last modified time, nanosecs */ int32_t c_spare2[2]; /* old ctime */ int32_t c_rdev; /* for devices, device number */ - int32_t c_createtimensec; /* creation time, nanosecs */ - int64_t c_createtime; /* creation time, seconds */ + int32_t c_birthtimensec; /* creation time, nanosecs */ + int64_t c_birthtime; /* creation time, seconds */ int64_t c_atime; /* last access time, seconds */ int64_t c_mtime; /* last modified time, seconds */ int32_t c_spare4[7]; /* old block pointers */ -- cgit v1.1