Module Name:    src
Committed By:   uwe
Date:           Tue May 26 22:08:11 UTC 2020

Modified Files:
        src/usr.sbin/puffs/mount_9p: node.c

Log Message:
puffs9p_node_lookup - use the right type for tfid.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.sbin/puffs/mount_9p/node.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/puffs/mount_9p/node.c
diff -u src/usr.sbin/puffs/mount_9p/node.c:1.23 src/usr.sbin/puffs/mount_9p/node.c:1.24
--- src/usr.sbin/puffs/mount_9p/node.c:1.23	Fri Jun  7 05:34:34 2019
+++ src/usr.sbin/puffs/mount_9p/node.c	Tue May 26 22:08:11 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: node.c,v 1.23 2019/06/07 05:34:34 ozaki-r Exp $	*/
+/*	$NetBSD: node.c,v 1.24 2020/05/26 22:08:11 uwe Exp $	*/
 
 /*
  * Copyright (c) 2007  Antti Kantee.  All Rights Reserved.
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: node.c,v 1.23 2019/06/07 05:34:34 ozaki-r Exp $");
+__RCSID("$NetBSD: node.c,v 1.24 2020/05/26 22:08:11 uwe Exp $");
 #endif /* !lint */
 
 #include <assert.h>
@@ -93,7 +93,7 @@ puffs9p_node_lookup(struct puffs_usermou
 	struct vattr va;
 	struct puffs_node *pn, *pn_dir = opc;
 	struct p9pnode *p9n_dir = pn_dir->pn_data;
-	p9ptag_t tfid = NEXTFID(p9p);
+	p9pfid_t tfid = NEXTFID(p9p);
 	struct qid9p newqid;
 	uint16_t nqid;
 

Reply via email to