Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Aug 2002 15:30:57 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 15422 for review
Message-ID:  <200208012230.g71MUvqG069686@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15422

Change 15422 by rwatson@rwatson_paprika on 2002/08/01 15:30:38

	Remove an old MACism no longer required due to our restoring
	the way vnodeop arrays work.  Missed because nwfs isn't
	highly connected to the build.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/fs/nwfs/nwfs_node.c#5 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/fs/nwfs/nwfs_node.c#5 (text+ko) ====

@@ -170,7 +170,7 @@
 	 * elsewhere if MALLOC should block.
 	 */
 	MALLOC(np, struct nwnode *, sizeof *np, M_NWNODE, M_WAITOK | M_ZERO);
-	error = getnewvnode(VT_NWFS, mp, &nwfs_vnodeop_p, &vp);
+	error = getnewvnode(VT_NWFS, mp, nwfs_vnodeop_p, &vp);
 	if (error) {
 		*vpp = NULL;
 		FREE(np, M_NWNODE);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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