# HG changeset patch # User David A. Holland # Date 1370973338 14400 # Node ID 05d67dd74e1fbfc926df2f029d97170d318eff24 # Parent 1e7144176a42ac8e1415d993ad1ab5029cd8908b Reduce the maximum include depth from 128 to 120. This way with the default limits on netbsd we hit it before we run out of file handles. diff -r 1e7144176a42 -r 05d67dd74e1f place.c --- a/place.c Tue Jun 11 13:55:09 2013 -0400 +++ b/place.c Tue Jun 11 13:55:38 2013 -0400 @@ -106,7 +106,7 @@ pf = placefile_create(place, file, issystem); placefilearray_add(&placefiles, pf, NULL); - if (pf->depth > 128) { + if (pf->depth > 120) { complain(place, "Maximum include nesting depth exceeded"); die(); }