Update CHANGEDSINCE macro to conform to -current dinode.h

This commit is contained in:
Jordan K. Hubbard 1997-02-16 22:16:08 +00:00
parent dfc33decb2
commit 28ebf21479
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22810

View File

@ -115,13 +115,8 @@ blockest(dp)
}
/* Auxiliary macro to pick up files changed since previous dump. */
#ifdef FS_44INODEFMT
#define CHANGEDSINCE(dp, t) \
((dp)->di_mtime.tv_sec >= (t) || (dp)->di_ctime.tv_sec >= (t))
#else
#define CHANGEDSINCE(dp, t) \
((dp)->di_mtime >= (t) || (dp)->di_ctime >= (t))
#endif
/* The WANTTODUMP macro decides whether a file should be dumped. */
#ifdef UF_NODUMP