Index: ntfs_vnops.c =================================================================== --- ntfs_vnops.c (revision 184473) +++ ntfs_vnops.c (working copy) @@ -394,9 +394,6 @@ struct vnode *vp = ap->a_vp; struct ntnode *ip = VTONT(vp); accmode_t accmode = ap->a_accmode; -#ifdef QUOTA - int error; -#endif dprintf(("ntfs_access: %d\n",ip->i_number)); @@ -412,10 +409,6 @@ case VREG: if (vp->v_mount->mnt_flag & MNT_RDONLY) return (EROFS); -#ifdef QUOTA - if (error = getinoquota(ip)) - return (error); -#endif break; } }