Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Apr 2005 21:48:39 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 76157 for review
Message-ID:  <200504282148.j3SLmdP6082610@repoman.freebsd.org>

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

Change 76157 by rwatson@rwatson_paprika on 2005/04/28 21:48:16

	In the MAC branch, NFS descriptors and servers use credential
	pointers, not embedded credentials.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/nfsserver/nfs_serv.c#35 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/nfsserver/nfs_serv.c#35 (text+ko) ====

@@ -1473,7 +1473,7 @@
 		     */
 		    for(; nfsd && NFSW_CONTIG(owp, nfsd); nfsd = wp) {
 			wp = LIST_NEXT(nfsd, nd_hash);
-			if (nfsrv_samecred(&owp->nd_cr, &nfsd->nd_cr))
+			if (nfsrv_samecred(owp->nd_cr, nfsd->nd_cr))
 			    nfsrvw_coalesce(owp, nfsd);
 		    }
 		} else {



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