From 3706cd350927f08fa8742cce9448c9ba8e4d6b2c Mon Sep 17 00:00:00 2001 From: jhb Date: Wed, 27 Feb 2002 18:32:23 +0000 Subject: Simple p_ucred -> td_ucred changes to start using the per-thread ucred reference. --- sys/fs/portalfs/portal_vnops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs/portalfs') diff --git a/sys/fs/portalfs/portal_vnops.c b/sys/fs/portalfs/portal_vnops.c index a7d9832..934cf97 100644 --- a/sys/fs/portalfs/portal_vnops.c +++ b/sys/fs/portalfs/portal_vnops.c @@ -246,8 +246,8 @@ portal_open(ap) /* * Create a new socket. */ - error = socreate(AF_UNIX, &so, SOCK_STREAM, 0, - ap->a_td->td_proc->p_ucred, ap->a_td); + error = socreate(AF_UNIX, &so, SOCK_STREAM, 0, ap->a_td->td_ucred, + ap->a_td); if (error) goto bad; -- cgit v1.1