Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/puffs/mount_9p puffs9p_node_lookup - use the right ...



details:   https://anonhg.NetBSD.org/src/rev/bb0c4fd6e381
branches:  trunk
changeset: 933545:bb0c4fd6e381
user:      uwe <uwe%NetBSD.org@localhost>
date:      Tue May 26 22:08:11 2020 +0000

description:
puffs9p_node_lookup - use the right type for tfid.

diffstat:

 usr.sbin/puffs/mount_9p/node.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 86d1b2cd8efa -r bb0c4fd6e381 usr.sbin/puffs/mount_9p/node.c
--- a/usr.sbin/puffs/mount_9p/node.c    Tue May 26 22:06:11 2020 +0000
+++ b/usr.sbin/puffs/mount_9p/node.c    Tue May 26 22:08:11 2020 +0000
@@ -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 @@
        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;
 



Home | Main Index | Thread Index | Old Index