diff options
author | John Baldwin <jhb@FreeBSD.org> | 2002-04-01 21:31:13 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2002-04-01 21:31:13 +0000 |
commit | 44731cab3b9966b7ca67f3fe50e7f3c711533730 (patch) | |
tree | 79021f0d43a5858be317d5cd33eac8cd4962b336 /sys/isofs | |
parent | a4a49508b4ddf1b482743f71bcd6707c9ce7b406 (diff) | |
download | src-test2-44731cab3b9966b7ca67f3fe50e7f3c711533730.tar.gz src-test2-44731cab3b9966b7ca67f3fe50e7f3c711533730.zip |
Notes
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 1d9e073f9d66..70ecb010a4a8 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -238,7 +238,7 @@ cd9660_mount(mp, path, data, ndp, td) vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td); error = VOP_ACCESS(devvp, accessmode, td->td_ucred, td); if (error) - error = suser_td(td); + error = suser(td); if (error) { vput(devvp); return (error); |