]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/vfs/vfs_xattr.c
xnu-1504.9.17.tar.gz
[apple/xnu.git] / bsd / vfs / vfs_xattr.c
index 32c2eb625f1eeaa9af0b3c251d3b55c8f7ba4042..d15711685e7157fc0e96442185cee836ba2fc094 100644 (file)
@@ -946,8 +946,8 @@ get_shadow_dir(vnode_t *sdvpp, vfs_context_t context)
                }
        }
 
-       /* Obtain the vnode for "/tmp" directory. */
-       if (vnode_lookup("/tmp", 0, &dvp, context) != 0) {
+       /* Obtain the vnode for "/var/run" directory. */
+       if (vnode_lookup("/var/run", 0, &dvp, context) != 0) {
                error = ENOTSUP;
                goto out;
        }
@@ -995,7 +995,7 @@ get_shadow_dir(vnode_t *sdvpp, vfs_context_t context)
                        if (sdvp->v_type != VDIR) {
                                goto baddir;
                        }
-                       /* Obtain the fsid for /tmp directory */
+                       /* Obtain the fsid for /var/run directory */
                        VATTR_INIT(&va);
                        VATTR_WANTED(&va, va_fsid);
                        if (VNOP_GETATTR(dvp, &va, context) != 0  ||