svn commit: r350207 - head/share/man/man9

Alan Somers asomers at FreeBSD.org
Mon Jul 22 04:14:55 UTC 2019


Author: asomers
Date: Mon Jul 22 04:14:53 2019
New Revision: 350207
URL: https://svnweb.freebsd.org/changeset/base/350207

Log:
  VOP_PATHCONF.9: correct the type of the retval argument
  
  It was changed from int to register_t in r22521 and from register_t to long
  in r328099, but the man page wasn't updated either time.
  
  MFC after:	2 weeks

Modified:
  head/share/man/man9/VOP_PATHCONF.9

Modified: head/share/man/man9/VOP_PATHCONF.9
==============================================================================
--- head/share/man/man9/VOP_PATHCONF.9	Mon Jul 22 03:11:54 2019	(r350206)
+++ head/share/man/man9/VOP_PATHCONF.9	Mon Jul 22 04:14:53 2019	(r350207)
@@ -28,7 +28,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 24, 1996
+.Dd July 21, 2019
 .Dt VOP_PATHCONF 9
 .Os
 .Sh NAME
@@ -39,7 +39,7 @@
 .In sys/vnode.h
 .In sys/unistd.h
 .Ft int
-.Fn VOP_PATHCONF "struct vnode *vp" "int name" "int *retval"
+.Fn VOP_PATHCONF "struct vnode *vp" "int name" "long *retval"
 .Sh DESCRIPTION
 The arguments are:
 .Bl -tag -width retval


More information about the svn-src-all mailing list