--- src/sys/vfs/msdosfs/msdosfs_lookup.c 2004/04/24 04:32:04 1.10 +++ src/sys/vfs/msdosfs/msdosfs_lookup.c 2004/09/30 19:00:04 1.11 @@ -373,7 +373,7 @@ notfound: * Insert name into cache (as non-existent) if appropriate. */ if ((cnp->cn_flags & CNP_MAKEENTRY) && nameiop != NAMEI_CREATE) - cache_enter(vdp, NCPNULL, *vpp, cnp); + cache_enter(vdp, *vpp, cnp); return (ENOENT); found: @@ -549,7 +549,7 @@ foundroot: * Insert name into cache if appropriate. */ if (cnp->cn_flags & CNP_MAKEENTRY) - cache_enter(vdp, NCPNULL, *vpp, cnp); + cache_enter(vdp, *vpp, cnp); return (0); }