Module Name:    src
Committed By:   riastradh
Date:           Thu May  2 14:49:51 UTC 2013

Modified Files:
        src/sys/miscfs/genfs: genfs.h

Log Message:
Fix (harmless) typo in struct genfs_rename_ops::gro_lookup prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/miscfs/genfs/genfs.h

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

Modified files:

Index: src/sys/miscfs/genfs/genfs.h
diff -u src/sys/miscfs/genfs/genfs.h:1.30 src/sys/miscfs/genfs/genfs.h:1.31
--- src/sys/miscfs/genfs/genfs.h:1.30	Tue May  8 23:53:26 2012
+++ src/sys/miscfs/genfs/genfs.h	Thu May  2 14:49:51 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: genfs.h,v 1.30 2012/05/08 23:53:26 riastradh Exp $	*/
+/*	$NetBSD: genfs.h,v 1.31 2013/05/02 14:49:51 riastradh Exp $	*/
 
 #ifndef	_MISCFS_GENFS_GENFS_H_
 #define	_MISCFS_GENFS_GENFS_H_
@@ -108,7 +108,7 @@ struct genfs_rename_ops {
 	    struct vnode *dvp, struct componentname *cnp, void *de,
 	    struct vnode *vp);
 	int (*gro_lookup)(struct mount *mp, struct vnode *dvp,
-	    struct componentname *cnp, void *fde_ret, struct vnode **vp_ret);
+	    struct componentname *cnp, void *de_ret, struct vnode **vp_ret);
 	int (*gro_genealogy)(struct mount *mp, kauth_cred_t cred,
 	    struct vnode *fdvp, struct vnode *tdvp,
 	    struct vnode **intermediate_node_ret);

Reply via email to