diff options
author | deraadt <> | 2015-10-02 18:05:07 +0000 |
---|---|---|
committer | deraadt <> | 2015-10-02 18:05:07 +0000 |
commit | 82e71d17ffaf1396c90c4b1eb75414191c50e8cb (patch) | |
tree | 2e7f56d6c54ad363b1307d13bfc0b232c38faddd /src | |
parent | 9e98e8a3921fd298877140c939a2a8521d1638b4 (diff) | |
download | openbsd-82e71d17ffaf1396c90c4b1eb75414191c50e8cb.tar.gz openbsd-82e71d17ffaf1396c90c4b1eb75414191c50e8cb.tar.bz2 openbsd-82e71d17ffaf1396c90c4b1eb75414191c50e8cb.zip |
avoid sys/param.h, by using PATH_MAX
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/certhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
474 | certhash_link(struct dirent *dep, struct hashinfo **links) | 474 | certhash_link(struct dirent *dep, struct hashinfo **links) |
475 | { | 475 | { |
476 | struct hashinfo *hi = NULL; | 476 | struct hashinfo *hi = NULL; |
477 | char target[MAXPATHLEN]; | 477 | char target[PATH_MAX]; |
478 | struct stat sb; | 478 | struct stat sb; |
479 | int n; | 479 | int n; |
480 | 480 | ||