From ef82ec6f879a46c60bcda5eff16529f9fd6b2262 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Fri, 2 Oct 2015 18:05:07 +0000 Subject: avoid sys/param.h, by using PATH_MAX --- src/usr.bin/openssl/certhash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/usr.bin/openssl/certhash.c') diff --git a/src/usr.bin/openssl/certhash.c b/src/usr.bin/openssl/certhash.c index a53ffe2053..77e641cef5 100644 --- a/src/usr.bin/openssl/certhash.c +++ b/src/usr.bin/openssl/certhash.c @@ -474,7 +474,7 @@ static int certhash_link(struct dirent *dep, struct hashinfo **links) { struct hashinfo *hi = NULL; - char target[MAXPATHLEN]; + char target[PATH_MAX]; struct stat sb; int n; -- cgit v1.2.3-55-g6feb