summaryrefslogtreecommitdiffstats
path: root/sbin/fsdb/fsdbutil.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-03-13 12:42:22 +0000
committerpeter <peter@FreeBSD.org>1997-03-13 12:42:22 +0000
commitc10a7352245a527316fdbe7f52d56a4253d0d279 (patch)
treee39b0f470d0b69409ebd6cba32ed04a233816758 /sbin/fsdb/fsdbutil.c
parentd6216e2c0e39d15f2f5f6bb3492c7b5af0f113de (diff)
downloadFreeBSD-src-c10a7352245a527316fdbe7f52d56a4253d0d279.zip
FreeBSD-src-c10a7352245a527316fdbe7f52d56a4253d0d279.tar.gz
Make this compile. Mostly use the new names for the ctime/atime/mtime
stamps in the inodes and call one of fsck's utility funcs with a new arg.
Diffstat (limited to 'sbin/fsdb/fsdbutil.c')
-rw-r--r--sbin/fsdb/fsdbutil.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/fsdb/fsdbutil.c b/sbin/fsdb/fsdbutil.c
index 2ea7d6c..8d064bc 100644
--- a/sbin/fsdb/fsdbutil.c
+++ b/sbin/fsdb/fsdbutil.c
@@ -130,15 +130,15 @@ printstat(cp, inum, dp)
break;
}
printf("I=%lu MODE=%o SIZE=%qu", inum, dp->di_mode, dp->di_size);
- p = ctime(&dp->di_mtime.tv_sec);
+ p = ctime((time_t *)&dp->di_mtime);
printf("\n\tMTIME=%15.15s %4.4s [%d nsec]", &p[4], &p[20],
- dp->di_mtime.tv_nsec);
- p = ctime(&dp->di_ctime.tv_sec);
+ dp->di_mtimensec);
+ p = ctime((time_t *)&dp->di_ctime);
printf("\n\tCTIME=%15.15s %4.4s [%d nsec]", &p[4], &p[20],
- dp->di_ctime.tv_nsec);
- p = ctime(&dp->di_atime.tv_sec);
+ dp->di_ctimensec);
+ p = ctime((time_t *)&dp->di_atime);
printf("\n\tATIME=%15.15s %4.4s [%d nsec]\n", &p[4], &p[20],
- dp->di_atime.tv_nsec);
+ dp->di_atimensec);
if (pw = getpwuid(dp->di_uid))
printf("OWNER=%s ", pw->pw_name);
OpenPOWER on IntegriCloud