git: 237900f17f09 - main - libutil: Include param.h in quotafile.c

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Tue, 12 May 2026 20:06:04 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=237900f17f091d059a3ead6a5320285654f4bfa0

commit 237900f17f091d059a3ead6a5320285654f4bfa0
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-05-12 17:47:04 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-05-12 20:05:19 +0000

    libutil: Include param.h in quotafile.c
    
    Required for MAXPATHLEN.
    
    MFC after:      1 week
---
 lib/libutil/quotafile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libutil/quotafile.c b/lib/libutil/quotafile.c
index 1f02813dee92..e8c8b39843d2 100644
--- a/lib/libutil/quotafile.c
+++ b/lib/libutil/quotafile.c
@@ -28,7 +28,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/types.h>
+#include <sys/param.h>
 #include <sys/endian.h>
 #include <sys/mount.h>
 #include <sys/stat.h>