summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_alq.c
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2007-06-01 14:33:11 +0000
committerkib <kib@FreeBSD.org>2007-06-01 14:33:11 +0000
commit17260ba6f1fe4f1f853e1660c3c55dce5eb30f83 (patch)
tree1977c9c1875b36aa303327d67bf46167ab478c50 /sys/kern/kern_alq.c
parente62312b69263d9a3edcc6deaf63ed19f723df1f4 (diff)
downloadFreeBSD-src-17260ba6f1fe4f1f853e1660c3c55dce5eb30f83.zip
FreeBSD-src-17260ba6f1fe4f1f853e1660c3c55dce5eb30f83.tar.gz
Change the VOP_OPEN(), vn_open() vnode operation and d_fdopen() cdev operation
argument from being file descriptor index into the pointer to struct file: part 2. Convert calls missed in the first big commit. Noted by: rwatson Pointy hat to: kib
Diffstat (limited to 'sys/kern/kern_alq.c')
-rw-r--r--sys/kern/kern_alq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_alq.c b/sys/kern/kern_alq.c
index 49aa0ac..a141034 100644
--- a/sys/kern/kern_alq.c
+++ b/sys/kern/kern_alq.c
@@ -356,7 +356,7 @@ alq_open(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
NDINIT(&nd, LOOKUP, NOFOLLOW | MPSAFE, UIO_SYSSPACE, file, td);
flags = FWRITE | O_NOFOLLOW | O_CREAT;
- error = vn_open_cred(&nd, &flags, cmode, cred, -1);
+ error = vn_open_cred(&nd, &flags, cmode, cred, NULL);
if (error)
return (error);
OpenPOWER on IntegriCloud