Author: emaste Date: Wed Mar 20 03:50:45 2019 New Revision: 345315 URL: https://svnweb.freebsd.org/changeset/base/345315
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/11/lib/libc/sys/stat.2 Directory Properties: stable/11/ (props changed) Modified: stable/11/lib/libc/sys/stat.2 ============================================================================== --- stable/11/lib/libc/sys/stat.2 Wed Mar 20 03:47:12 2019 (r345314) +++ stable/11/lib/libc/sys/stat.2 Wed Mar 20 03:50:45 2019 (r345315) @@ -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 _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
