diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2017-05-16 14:31:16 +0200 |
---|---|---|
committer | Jan Moskyto Matejka <mq@ucw.cz> | 2017-05-16 15:34:57 +0200 |
commit | 05d47bd53e71480f1b276bd895f1c25088201e48 (patch) | |
tree | 6d9c8169ed695d17c90972ae6dd163c45a3d82b1 /conf/conf.c | |
parent | b880e3ffaea12c3231975157bc51b5f90a2f2433 (diff) |
Linpool: default allocation size
Diffstat (limited to 'conf/conf.c')
-rw-r--r-- | conf/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.c b/conf/conf.c index a2837886..9978ef23 100644 --- a/conf/conf.c +++ b/conf/conf.c @@ -89,7 +89,7 @@ struct config * config_alloc(const char *name) { pool *p = rp_new(&root_pool, "Config"); - linpool *l = lp_new(p, 4080); + linpool *l = lp_new_default(p); struct config *c = lp_allocz(l, sizeof(struct config)); /* Duplication of name string in local linear pool */ |