Boosted the max recrusion limit for saving config files from 100 to 1000.

This commit is contained in:
Bruno Wolff III 2005-11-13 16:19:04 +00:00
parent 698db11af7
commit 7b50823982
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ static const unsigned int
compress_first_word = 4, compress_end_words = 256;
static const size_t compress_max_words = compress_end_words - compress_first_word;
static const size_t max_schema_item_length = 20;
static const int max_recursion_levels = 100;
static const int max_recursion_levels = 1000;
static void compress_output_literal_word(std::ostream &out, std::string const &word)
{

View File

@ -36,7 +36,7 @@
#define WRN_CF LOG_STREAM(warn, config)
#define LOG_CF LOG_STREAM(info, config)
static const size_t max_recursion_levels = 100;
static const size_t max_recursion_levels = 1000;
namespace {