diff options
Diffstat (limited to 'usr.sbin/edquota/edquota.c')
-rw-r--r-- | usr.sbin/edquota/edquota.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 7471445c2a2..904569ecca1 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -33,7 +33,7 @@ /* * Disk quota editor. */ -#include <sys/param.h> +#include <sys/param.h> /* btodb dbtob */ #include <sys/stat.h> #include <sys/file.h> #include <sys/wait.h> @@ -51,6 +51,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <limits.h> char *qfname = QUOTAFILENAME; char *qfextension[] = INITQFNAMES; @@ -61,7 +62,7 @@ struct quotause { struct quotause *next; long flags; struct dqblk dqblk; - char fsname[MAXPATHLEN]; + char fsname[PATH_MAX]; char qfname[1]; /* actually longer */ } *getprivs(u_int, int); #define FOUND 0x01 |