Define BIGPATHBUFLEN -- a roomy line-buffer that can hold a

MAXPATHLEN string plus a message, and it's at least 4096+1024
bytes for those systems where MAXPATHLEN is overly short.
This commit is contained in:
Wayne Davison
2005-07-29 18:31:03 +00:00
parent 9ec8bd87bb
commit a22ca88565

View File

@@ -463,6 +463,14 @@ struct idev {
#define MAXPATHLEN 1024
#endif
/* We want a roomy line buffer that can hold more than MAXPATHLEN,
* and significantly more than an overly short MAXPATHLEN. */
#if MAXPATHLEN < 4096
#define BIGPATHBUFLEN (4096+1024)
#else
#define BIGPATHBUFLEN (MAXPATHLEN+1024)
#endif
#ifndef NAME_MAX
#define NAME_MAX 255
#endif