Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Mar 2019 15:18:15 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r345087 - head/lib/libc/sys
Message-ID:  <201903131518.x2DFIFDO066269@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Mar 13 15:18:14 2019
New Revision: 345087
URL: https://svnweb.freebsd.org/changeset/base/345087

Log:
  Use consistent struct stat arg name in stat man page
  
  stat, lstat, and fstat use `*sb` as the stat struct pointer arg name,
  while fstatat previously used `*buf`.
  
  MFC after:	1 week

Modified:
  head/lib/libc/sys/stat.2

Modified: head/lib/libc/sys/stat.2
==============================================================================
--- head/lib/libc/sys/stat.2	Wed Mar 13 13:41:05 2019	(r345086)
+++ head/lib/libc/sys/stat.2	Wed Mar 13 15:18:14 2019	(r345087)
@@ -48,7 +48,7 @@
 .Ft int
 .Fn fstat "int fd" "struct stat *sb"
 .Ft int
-.Fn fstatat "int fd" "const char *path" "struct stat *buf" "int flag"
+.Fn fstatat "int fd" "const char *path" "struct stat *sb" "int flag"
 .Sh DESCRIPTION
 The
 .Fn stat



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