diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 20:40:41 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-06-24 20:40:41 +0000 |
commit | 86917d47bf56eae9a002deedb2b57f8a095970f8 (patch) | |
tree | c6d138e92def6aab2d67756de8df94d8847aab46 /libdiskfs | |
parent | 22a5090b5cd83c8358bd367d07cf51067ce32e85 (diff) |
(diskfs_S_dir_unlink): Use diskfs_check_readonly instead of diskfs_readonly.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/dir-unlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/dir-unlink.c b/libdiskfs/dir-unlink.c index bd02ec32..34fe0b67 100644 --- a/libdiskfs/dir-unlink.c +++ b/libdiskfs/dir-unlink.c @@ -34,7 +34,7 @@ diskfs_S_dir_unlink (struct protid *dircred, return EOPNOTSUPP; dnp = dircred->po->np; - if (diskfs_readonly) + if (diskfs_check_readonly ()) return EROFS; mutex_lock (&dnp->lock); |