diff options
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common.c b/src/common.c index f35493f..d905929 100644 --- a/src/common.c +++ b/src/common.c @@ -1824,8 +1824,8 @@ read_config_file (struct str_map *config, struct error **e) } static char * -write_default_config (const char *filename, const struct config_item *table, - struct error **e) +write_default_config (const char *filename, const char *prolog, + const struct config_item *table, struct error **e) { struct str path, base; @@ -1861,6 +1861,9 @@ write_default_config (const char *filename, const struct config_item *table, goto error; } + if (prolog) + fputs (prolog, fp); + errno = 0; for (; table->key != NULL; table++) { |