summaryrefslogtreecommitdiffstats
path: root/sys/ntfs/ntfs_vfsops.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2011-07-04 04:30:41 +0000
committertedu <tedu@openbsd.org>2011-07-04 04:30:41 +0000
commit93f62a9e84699bfb64dbc8d47a34914771f746b4 (patch)
tree75cd6c828011102787bab97d9ebe1eae0d379b49 /sys/ntfs/ntfs_vfsops.c
parentLINK_STATE cleanup. It is no longer needed to special case carp(4). (diff)
downloadwireguard-openbsd-93f62a9e84699bfb64dbc8d47a34914771f746b4.tar.xz
wireguard-openbsd-93f62a9e84699bfb64dbc8d47a34914771f746b4.zip
bread does nothing with its ucred argument. remove it. ok matthew
Diffstat (limited to 'sys/ntfs/ntfs_vfsops.c')
-rw-r--r--sys/ntfs/ntfs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c
index 092a1d8825b..768908f4a17 100644
--- a/sys/ntfs/ntfs_vfsops.c
+++ b/sys/ntfs/ntfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ntfs_vfsops.c,v 1.25 2011/04/03 17:17:41 jsing Exp $ */
+/* $OpenBSD: ntfs_vfsops.c,v 1.26 2011/07/04 04:30:41 tedu Exp $ */
/* $NetBSD: ntfs_vfsops.c,v 1.7 2003/04/24 07:50:19 christos Exp $ */
/*-
@@ -359,7 +359,7 @@ ntfs_mountfs(devvp, mp, argsp, p)
bp = NULL;
- error = bread(devvp, BBLOCK, BBSIZE, NOCRED, &bp);
+ error = bread(devvp, BBLOCK, BBSIZE, &bp);
if (error)
goto out;
ntmp = malloc(sizeof *ntmp, M_NTFSMNT, M_WAITOK | M_ZERO);