The branch stable/15 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=3dac23ccc75f75c2d280b2c39dc9757ecf085452
commit 3dac23ccc75f75c2d280b2c39dc9757ecf085452 Author: Mark Johnston <[email protected]> AuthorDate: 2026-05-12 17:46:40 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2026-05-19 14:08:32 +0000 edquota: Include param.h Required for MAXPATHLEN and MAXLOGNAME. MFC after: 1 week (cherry picked from commit ee2d1a1a5a1877f8ce7b9eee94479ec702880bd7) --- usr.sbin/edquota/edquota.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 6c209cd23716..f9780a7b0507 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -36,6 +36,7 @@ * Disk quota editor. */ +#include <sys/param.h> #include <sys/file.h> #include <sys/mount.h> #include <sys/wait.h>
