jcs's openbsd hax
openbsd

Fix typo in comment for f_favail. From Alf Schlichting

millert 61024165 816fa613

+5 -5
+3 -3
lib/libc/gen/statvfs.3
··· 1 - .\" $OpenBSD: statvfs.3,v 1.8 2015/01/29 01:46:30 schwarze Exp $ 1 + .\" $OpenBSD: statvfs.3,v 1.9 2022/02/11 15:11:35 millert Exp $ 2 2 .\" $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $ 3 3 .\" 4 4 .\" Copyright (c) 1989, 1991, 1993 ··· 30 30 .\" 31 31 .\" @(#)statfs.2 8.3 (Berkeley) 2/11/94 32 32 .\" 33 - .Dd $Mdocdate: January 29 2015 $ 33 + .Dd $Mdocdate: February 11 2022 $ 34 34 .Dt STATVFS 3 35 35 .Os 36 36 .Sh NAME ··· 61 61 fsblkcnt_t f_bavail; /* free blocks for non-root */ 62 62 fsfilcnt_t f_files; /* total file inodes */ 63 63 fsfilcnt_t f_ffree; /* free file inodes */ 64 - fsfilcnt_t f_favail; /* free file inodes for to non-root */ 64 + fsfilcnt_t f_favail; /* free file inodes for non-root */ 65 65 unsigned long f_fsid; /* file system id */ 66 66 unsigned long f_flag; /* bit mask of f_flag values */ 67 67 unsigned long f_namemax; /* maximum filename length */
+2 -2
sys/sys/statvfs.h
··· 1 - /* $OpenBSD: statvfs.h,v 1.3 2013/03/24 17:45:50 deraadt Exp $ */ 1 + /* $OpenBSD: statvfs.h,v 1.4 2022/02/11 15:11:35 millert Exp $ */ 2 2 3 3 /* 4 4 * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> ··· 29 29 fsblkcnt_t f_bavail; /* free blocks for non-root */ 30 30 fsfilcnt_t f_files; /* total file inodes */ 31 31 fsfilcnt_t f_ffree; /* free file inodes */ 32 - fsfilcnt_t f_favail; /* free file inodes for to non-root */ 32 + fsfilcnt_t f_favail; /* free file inodes for non-root */ 33 33 unsigned long f_fsid; /* file system id */ 34 34 unsigned long f_flag; /* bit mask of f_flag values */ 35 35 unsigned long f_namemax; /* maximum filename length */