summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVladimir Kotal <Vladimir.Kotal@Oracle.COM>2015-09-21 21:07:28 +0200
committerRich Salz <rsalz@openssl.org>2015-09-24 11:25:25 -0400
commite7a68985d5b734890489a9d47f82210c384e8c3a (patch)
tree9a20e6782877e37815cc124ac5fd1c392fd4d80d /apps
parent1c9c243509d017244764545dc01e40d962423bbb (diff)
fix compilation on Solaris
Signed-off-by: Rich Salz <rsalz@akamai.com> Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/rehash.c5
1 files changed, 2 insertions, 3 deletions
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);