summaryrefslogtreecommitdiff
path: root/src/configfile-glue.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2016-05-10 20:33:26 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2016-05-10 22:32:03 -0400
commit969456f3faf544d0fbc55ffaa7ef41ef1098e72d (patch)
tree1c22c5aa451ab7535cd8409704f0abdccaa1a5f5 /src/configfile-glue.c
parent83d896d09548b7d85949a16fe076db70b84a9ace (diff)
downloadlighttpd-git-969456f3faf544d0fbc55ffaa7ef41ef1098e72d.tar.gz
[core] fix config merge of array lists
Diffstat (limited to 'src/configfile-glue.c')
-rw-r--r--src/configfile-glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configfile-glue.c b/src/configfile-glue.c
index ff576c3e..1982f37c 100644
--- a/src/configfile-glue.c
+++ b/src/configfile-glue.c
@@ -60,7 +60,7 @@ int config_insert_values_internal(server *srv, array *ca, const config_values_t
data_string *ds = data_string_init();
buffer_copy_buffer(ds->value, ((data_string *)(da->value->data[j]))->value);
- if (!da->is_index_key) {
+ if (!((data_string *)(da->value->data[j]))->is_index_key) {
/* the id's were generated automaticly, as we copy now we might have to renumber them
* this is used to prepend server.modules by mod_indexfile as it has to be loaded
* before mod_fastcgi and friends */