Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Jan 2004 19:13:33 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 45185 for review
Message-ID:  <200401120313.i0C3DX7Z099295@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=45185

Change 45185 by rwatson@rwatson_paprika on 2004/01/11 19:13:25

	Logic fix.

Affected files ...

.. //depot/projects/trustedbsd/audit2/sys/compat/linprocfs/linprocfs.c#3 edit

Differences ...

==== //depot/projects/trustedbsd/audit2/sys/compat/linprocfs/linprocfs.c#3 (text+ko) ====

@@ -356,7 +356,7 @@
 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, linux_emul_path, td);
 	flep = NULL;
 	if (namei(&nd) != 0 || vn_fullpath_thread(td, nd.ni_vp, &dlep, &flep)
-	    == -1)
+	    != 0)
 		lep = linux_emul_path;
 	else
 		lep = dlep;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401120313.i0C3DX7Z099295>