summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-04-16 19:29:48 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-04-16 19:29:48 +0000
commit0ee7091bde027b6abdafa1117cdde8e67c6b5908 (patch)
treee7038c2a48f019b7aeaf92de21c2e0cf65660a44 /libdiskfs
parentb011190c6530116dbaee56b92d89b032b9fcfc91 (diff)
(diskfs_lookup): Never mind.
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/lookup.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libdiskfs/lookup.c b/libdiskfs/lookup.c
index 4408b3ea..6baa78bb 100644
--- a/libdiskfs/lookup.c
+++ b/libdiskfs/lookup.c
@@ -99,8 +99,6 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type,
{
if (np)
*np = 0;
- if (!diskfs_readonly)
- dp->dn_set_atime = 1;
return ENOENT;
}
else if (cached)
@@ -116,15 +114,11 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type,
diskfs_nput (cached);
if (ds)
diskfs_null_dirstat (ds);
- if (!diskfs_readonly)
- dp->dn_set_atime = 1;
return 0;
}
}
err = diskfs_lookup_hard (dp, name, type, np, ds, cred);
- if (!diskfs_readonly)
- dp->dn_set_atime = 1;
if (err && err != ENOENT)
return err;