From b89434f21ae046433285c9cbccd06a7e60481404 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 5 Jun 2013 02:00:26 +0000 Subject: Some places used PATH_MAX from , some MAXPATHLEN from . Consistently use the PATH_MAX since it is specified by POSIX, while MAXPATHLEN is not. In preparation for using this at a few more places. --- manpage.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'manpage.c') diff --git a/manpage.c b/manpage.c index de5db112..e1ef6a27 100644 --- a/manpage.c +++ b/manpage.c @@ -17,10 +17,10 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif -#include #include #include +#include #include #include #include @@ -40,7 +40,7 @@ main(int argc, char *argv[]) struct mansearch search; struct manpage *res; char *conf_file, *defpaths, *auxpaths, *cp; - char buf[MAXPATHLEN]; + char buf[PATH_MAX]; const char *cmd; struct manpaths paths; char *progname; @@ -132,7 +132,7 @@ main(int argc, char *argv[]) } show: cmd = res[i - 1].form ? "mandoc" : "cat"; - strlcpy(buf, res[i - 1].file, MAXPATHLEN); + strlcpy(buf, res[i - 1].file, PATH_MAX); free(res); show(cmd, buf); -- cgit