From: Vladimir Kotal Date: Mon, 21 Sep 2015 19:07:28 +0000 (+0200) Subject: fix compilation on Solaris X-Git-Tag: OpenSSL_1_1_0-pre1~522 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=e7a68985d5b734890489a9d47f82210c384e8c3a fix compilation on Solaris Signed-off-by: Rich Salz Reviewed-by: Tim Hudson --- diff --git a/apps/rehash.c b/apps/rehash.c index c8bfb05b78..dbaea10489 100644 --- a/apps/rehash.c +++ b/apps/rehash.c @@ -199,7 +199,7 @@ static int handle_symlink(const char *filename, const char *fullpath) unsigned int hash = 0; int i, type, id; unsigned char ch; - char linktarget[NAME_MAX], *endptr; + char linktarget[PATH_MAX], *endptr; ssize_t n; for (i = 0; i < 8; i++) { @@ -319,8 +319,7 @@ static int do_dir(const char *dirname, enum Hash h) } buflen = strlen(dirname); pathsep = (buflen && dirname[buflen - 1] == '/') ? "" : "/"; - buflen += NAME_MAX + 2; - buf = app_malloc(buflen, "filename buffer"); + buf = app_malloc(PATH_MAX, "filename buffer"); if (verbose) BIO_printf(bio_out, "Doing %s\n", dirname);