Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/chfs fix accessx confusion (thanks hannken@)



details:   https://anonhg.NetBSD.org/src/rev/07a2663fbb99
branches:  trunk
changeset: 933166:07a2663fbb99
user:      christos <christos%NetBSD.org@localhost>
date:      Wed May 20 17:04:58 2020 +0000

description:
fix accessx confusion (thanks hannken@)

diffstat:

 sys/ufs/chfs/chfs_vnops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b9d1209a1761 -r 07a2663fbb99 sys/ufs/chfs/chfs_vnops.c
--- a/sys/ufs/chfs/chfs_vnops.c Wed May 20 15:43:29 2020 +0000
+++ b/sys/ufs/chfs/chfs_vnops.c Wed May 20 17:04:58 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: chfs_vnops.c,v 1.39 2020/05/16 18:31:53 christos Exp $ */
+/*     $NetBSD: chfs_vnops.c,v 1.40 2020/05/20 17:04:58 christos Exp $ */
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -1663,7 +1663,7 @@
                { &vop_open_desc, spec_open },
                { &vop_close_desc, ufsspec_close },
                { &vop_access_desc, chfs_access },
-               { &vop_accessx_desc, genfs_access },
+               { &vop_accessx_desc, genfs_accessx },
                { &vop_getattr_desc, chfs_getattr },
                { &vop_setattr_desc, chfs_setattr },
                { &vop_read_desc, chfs_read },
@@ -1720,7 +1720,7 @@
                { &vop_open_desc, vn_fifo_bypass },
                { &vop_close_desc, ufsfifo_close },
                { &vop_access_desc, chfs_access },
-               { &vop_accessx_desc, genfs_access },
+               { &vop_accessx_desc, genfs_accessx },
                { &vop_getattr_desc, chfs_getattr },
                { &vop_setattr_desc, chfs_setattr },
                { &vop_read_desc, ufsfifo_read },



Home | Main Index | Thread Index | Old Index