svn commit: r345314 - stable/12/lib/libc/sys

Ed Maste emaste at FreeBSD.org
Wed Mar 20 03:47:13 UTC 2019


Author: emaste
Date: Wed Mar 20 03:47:12 2019
New Revision: 345314
URL: https://svnweb.freebsd.org/changeset/base/345314

Log:
  MFC r345087: 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`.

Modified:
  stable/12/lib/libc/sys/stat.2
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/libc/sys/stat.2
==============================================================================
--- stable/12/lib/libc/sys/stat.2	Wed Mar 20 01:55:24 2019	(r345313)
+++ stable/12/lib/libc/sys/stat.2	Wed Mar 20 03:47:12 2019	(r345314)
@@ -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


More information about the svn-src-all mailing list