From 4806d88677d2a333254f9fc33d4e119cc56bb002 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 11 Oct 2001 23:38:17 +0000 Subject: Change the kernel's ucred API as follows: - crhold() returns a reference to the ucred whose refcount it bumps. - crcopy() now simply copies the credentials from one credential to another and has no return value. - a new crshared() primitive is added which returns true if a ucred's refcount is > 1 and false (0) otherwise. --- sys/netncp/ncp_conn.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sys/netncp') diff --git a/sys/netncp/ncp_conn.c b/sys/netncp/ncp_conn.c index dc255f2..fbe9b15 100644 --- a/sys/netncp/ncp_conn.c +++ b/sys/netncp/ncp_conn.c @@ -230,10 +230,8 @@ ncp_conn_alloc(struct ncp_conn_args *cap, struct proc *p, struct ucred *cred, if (cap->owner != NCP_DEFAULT_OWNER) { owner = crget(); owner->cr_uid = cap->owner; - } else { - owner = cred; - crhold(owner); - } + } else + owner = crhold(cred); MALLOC(ncp, struct ncp_conn *, sizeof(struct ncp_conn), M_NCPDATA, M_WAITOK | M_ZERO); error = 0; -- cgit v1.1