diff options
author | phk <phk@FreeBSD.org> | 1999-11-21 12:38:21 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-11-21 12:38:21 +0000 |
commit | d19d6e6b458e551bcea54f2b5ed1015dc467182e (patch) | |
tree | dce0fefe05804627c6f74dba7f2e06baab5e0272 /sys/compat/svr4/svr4_misc.c | |
parent | d655bdb1cd68118a4aef6af9143d8ab360890bc8 (diff) | |
download | FreeBSD-src-d19d6e6b458e551bcea54f2b5ed1015dc467182e.zip FreeBSD-src-d19d6e6b458e551bcea54f2b5ed1015dc467182e.tar.gz |
s/p_cred->pc_ucred/p_ucred/g
Diffstat (limited to 'sys/compat/svr4/svr4_misc.c')
-rw-r--r-- | sys/compat/svr4/svr4_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c index 2b39d6b..67bafae 100644 --- a/sys/compat/svr4/svr4_misc.c +++ b/sys/compat/svr4/svr4_misc.c @@ -1231,7 +1231,7 @@ loop: * Free up credentials. */ if (--q->p_cred->p_refcnt == 0) { - crfree(q->p_cred->pc_ucred); + crfree(q->p_ucred); FREE(q->p_cred, M_SUBPROC); } |