diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 21:24:48 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 21:24:48 +0000 |
commit | ef8b5004db62bdbb291f83bdc0b2de32713b0b42 (patch) | |
tree | 9bcd8f36512cfc815cc7655747a0175ab97b2827 /ufs/inode.c | |
parent | 7eb2e7af3cfe59e9e22f347ecb686ad84356e45d (diff) |
(diskfs_cached_lookup): Use diskfs_check_readonly instead of diskfs_readonly.
(read_symlink_hook): Likewise.
Diffstat (limited to 'ufs/inode.c')
-rw-r--r-- | ufs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ufs/inode.c b/ufs/inode.c index 51af3446..c3eec832 100644 --- a/ufs/inode.c +++ b/ufs/inode.c @@ -86,7 +86,7 @@ diskfs_cached_lookup (int inum, struct node **npp) err = read_disknode (np); - if (!diskfs_readonly && !np->dn_stat.st_gen) + if (!diskfs_check_readonly () && !np->dn_stat.st_gen) { spin_lock (&gennumberlock); if (++nextgennumber < diskfs_mtime->seconds) @@ -415,7 +415,7 @@ read_symlink_hook (struct node *np, bcopy ((dino (np->dn->number))->di_shortlink, buf, np->dn_stat.st_size); - if (! diskfs_readonly) + if (! diskfs_check_readonly ()) np->dn_set_atime = 1; diskfs_end_catch_exception (); |