diff options
author | phk <phk@FreeBSD.org> | 2003-07-27 17:04:56 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-07-27 17:04:56 +0000 |
commit | d4d7ca154aba6a0f8370fe818bb79bd7685b9fdc (patch) | |
tree | 9fe71cfe1133914703f5c502a7c60529cda9fff5 /sys/kern/vfs_extattr.c | |
parent | b40be37a17ddb7368dd149f10f7c780fa8cfed66 (diff) | |
download | FreeBSD-src-d4d7ca154aba6a0f8370fe818bb79bd7685b9fdc.zip FreeBSD-src-d4d7ca154aba6a0f8370fe818bb79bd7685b9fdc.tar.gz |
Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout.
Diffstat (limited to 'sys/kern/vfs_extattr.c')
-rw-r--r-- | sys/kern/vfs_extattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c index f7afcb5..7aa1729 100644 --- a/sys/kern/vfs_extattr.c +++ b/sys/kern/vfs_extattr.c @@ -685,7 +685,7 @@ kern_open(struct thread *td, char *path, enum uio_seg pathseg, int flags, * the descriptor while we are blocked in vn_open() */ fhold(fp); - error = vn_open(&nd, &flags, cmode); + error = vn_open(&nd, &flags, cmode, -1); if (error) { /* * release our own reference |