From b70db4c5d53adb2a12328f02792a2be5ed971a98 Mon Sep 17 00:00:00 2001 From: Nate Williams Date: Fri, 20 Sep 1996 04:33:57 +0000 Subject: ts_sec -> tv_sec ts_nsec -> tv_nsec --- sbin/fsdb/fsdbutil.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sbin/fsdb/fsdbutil.c') diff --git a/sbin/fsdb/fsdbutil.c b/sbin/fsdb/fsdbutil.c index 262bc1a66d3d..2ea7d6c02f66 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.ts_sec); + p = ctime(&dp->di_mtime.tv_sec); printf("\n\tMTIME=%15.15s %4.4s [%d nsec]", &p[4], &p[20], - dp->di_mtime.ts_nsec); - p = ctime(&dp->di_ctime.ts_sec); + dp->di_mtime.tv_nsec); + p = ctime(&dp->di_ctime.tv_sec); printf("\n\tCTIME=%15.15s %4.4s [%d nsec]", &p[4], &p[20], - dp->di_ctime.ts_nsec); - p = ctime(&dp->di_atime.ts_sec); + dp->di_ctime.tv_nsec); + p = ctime(&dp->di_atime.tv_sec); printf("\n\tATIME=%15.15s %4.4s [%d nsec]\n", &p[4], &p[20], - dp->di_atime.ts_nsec); + dp->di_atime.tv_nsec); if (pw = getpwuid(dp->di_uid)) printf("OWNER=%s ", pw->pw_name); -- cgit v1.2.3