summaryrefslogtreecommitdiffstats
path: root/sbin
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
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')
-rw-r--r--sbin/fsdb/fsdb.c2
-rw-r--r--sbin/fsdb/fsdbutil.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/sbin/fsdb/fsdb.c b/sbin/fsdb/fsdb.c
index 3993581..2085077 100644
--- a/sbin/fsdb/fsdb.c
+++ b/sbin/fsdb/fsdb.c
@@ -111,7 +111,7 @@ main(argc, argv)
rval = cmdloop();
sblock.fs_clean = 0; /* mark it dirty */
sbdirty();
- ckfini();
+ ckfini(0);
printf("*** FILE SYSTEM MARKED DIRTY\n");
printf("*** BE SURE TO RUN FSCK TO CLEAN UP ANY DAMAGE\n");
printf("*** IF IT WAS MOUNTED, RE-MOUNT WITH -u -o reload\n");
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