]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #838: 1.5.10 cannot be built on Solaris, undefined PATH_MAX.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 29 Sep 2016 07:00:31 +0000 (07:00 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 29 Sep 2016 07:00:31 +0000 (07:00 +0000)
git-svn-id: file:///svn/unbound/trunk@3871 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
smallapp/unbound-checkconf.c

index 678fa96be1e9b2f7c3f8f82a0a76e5b0476a68cb..9071974926bb60831d2178217a29e260ab880a33 100644 (file)
@@ -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.
index 51f8e648ab7a4de9083469858ec8a27114c0291c..e4c36c81c7b67ce97165d87f0f11c0d792f1a51b 100644 (file)
@@ -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");