From 90ff1247305728b120b283e5a0e186c397a9b4e5 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Tue, 16 Apr 1996 19:21:51 +0000 Subject: (diskfs_lookup): --- libdiskfs/lookup.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libdiskfs') diff --git a/libdiskfs/lookup.c b/libdiskfs/lookup.c index 0acad1d0..4408b3ea 100644 --- a/libdiskfs/lookup.c +++ b/libdiskfs/lookup.c @@ -99,7 +99,8 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type, { if (np) *np = 0; - dp->dn_set_atime = 1; + if (!diskfs_readonly) + dp->dn_set_atime = 1; return ENOENT; } else if (cached) @@ -115,7 +116,8 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type, diskfs_nput (cached); if (ds) diskfs_null_dirstat (ds); - dp->dn_set_atime = 1; + if (!diskfs_readonly) + dp->dn_set_atime = 1; return 0; } } -- cgit v1.2.3