mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix #838: 1.5.10 cannot be built on Solaris, undefined PATH_MAX.
git-svn-id: file:///svn/unbound/trunk@3871 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
8a19ff3baf
commit
52dbaa4ac1
2 changed files with 4 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
|||
29 September 2016: Wouter
|
||||
- Fix #838: 1.5.10 cannot be built on Solaris, undefined PATH_MAX.
|
||||
|
||||
27 September 2016: Wouter
|
||||
- tag for 1.5.10 release
|
||||
- trunk contains 1.5.11 in development.
|
||||
|
|
|
|||
|
|
@ -486,7 +486,7 @@ check_hints(struct config_file* cfg)
|
|||
static void
|
||||
checkconf(const char* cfgfile, const char* opt, int final)
|
||||
{
|
||||
char oldwd[PATH_MAX];
|
||||
char oldwd[4096];
|
||||
struct config_file* cfg = config_create();
|
||||
if(!cfg)
|
||||
fatal_exit("out of memory");
|
||||
|
|
|
|||
Loading…
Reference in a new issue