Fix one more compilation issue.

This commit is contained in:
Pawel Jakub Dawidek 2012-12-01 08:59:36 +00:00
parent ceaea52f0c
commit 8909f88d28
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=243746

View File

@ -211,9 +211,9 @@ namei(struct nameidata *ndp)
* If we are auditing the kernel pathname, save the user pathname.
*/
if (cnp->cn_flags & AUDITVNODE1)
AUDIT_ARG_UPATH1(td, ndp->ni_dirfd, , cnp->cn_pnbuf);
AUDIT_ARG_UPATH1(td, ndp->ni_dirfd, cnp->cn_pnbuf);
if (cnp->cn_flags & AUDITVNODE2)
AUDIT_ARG_UPATH2(td, ndp->ni_dirfd, , cnp->cn_pnbuf);
AUDIT_ARG_UPATH2(td, ndp->ni_dirfd, cnp->cn_pnbuf);
dp = NULL;
if (cnp->cn_pnbuf[0] != '/') {