svn commit: r243746 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Sat Dec 1 08:59:36 UTC 2012


Author: pjd
Date: Sat Dec  1 08:59:36 2012
New Revision: 243746
URL: http://svnweb.freebsd.org/changeset/base/243746

Log:
  Fix one more compilation issue.

Modified:
  head/sys/kern/vfs_lookup.c

Modified: head/sys/kern/vfs_lookup.c
==============================================================================
--- head/sys/kern/vfs_lookup.c	Sat Dec  1 08:51:40 2012	(r243745)
+++ head/sys/kern/vfs_lookup.c	Sat Dec  1 08:59:36 2012	(r243746)
@@ -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] != '/') {


More information about the svn-src-head mailing list