Index: main/config.c =================================================================== --- main/config.c (revision 117660) +++ main/config.c (working copy) @@ -812,7 +812,11 @@ static struct ast_config *config_text_file_load(const char *database, const char *table, const char *filename, struct ast_config *cfg, int withcomments) { char fn[256]; +#if defined(LOW_MEMORY) + char buf[1024]; +#else char buf[8192]; +#endif char *new_buf, *comment_p, *process_buf; FILE *f; int lineno=0;