summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ifs
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-03-18 20:02:18 +0000
committerpeter <peter@FreeBSD.org>1997-03-18 20:02:18 +0000
commit12d9e0792ecac802551de7e7603a95a8b82ae9a3 (patch)
treedf6a9744bb9dc2838fe211db9937b7005c3d2650 /sbin/fsck_ifs
parent6dfa201e54da68c531df03577a62ca10057e74cf (diff)
downloadFreeBSD-src-12d9e0792ecac802551de7e7603a95a8b82ae9a3.zip
FreeBSD-src-12d9e0792ecac802551de7e7603a95a8b82ae9a3.tar.gz
patch up some "int *" vs. "time_t *" (long) mismatches. They could be
nasty if sizeof(int) != sizeof(long).
Diffstat (limited to 'sbin/fsck_ifs')
-rw-r--r--sbin/fsck_ifs/inode.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/fsck_ifs/inode.c b/sbin/fsck_ifs/inode.c
index c421754..c16571c 100644
--- a/sbin/fsck_ifs/inode.c
+++ b/sbin/fsck_ifs/inode.c
@@ -500,6 +500,7 @@ pinode(ino)
register struct dinode *dp;
register char *p;
struct passwd *pw;
+ time_t t;
printf(" I=%lu ", ino);
if (ino < ROOTINO || ino > maxino)
@@ -514,7 +515,8 @@ pinode(ino)
if (preen)
printf("%s: ", cdevname);
printf("SIZE=%qu ", dp->di_size);
- p = ctime(&dp->di_mtime);
+ t = dp->di_mtime;
+ p = ctime(&t);
printf("MTIME=%12.12s %4.4s ", &p[4], &p[20]);
}
@@ -585,7 +587,7 @@ allocino(request, type)
return (0);
}
dp->di_mode = type;
- (void)time(&dp->di_atime);
+ dp->di_atime = time(NULL);
dp->di_mtime = dp->di_ctime = dp->di_atime;
dp->di_size = sblock.fs_fsize;
dp->di_blocks = btodb(sblock.fs_fsize);
OpenPOWER on IntegriCloud