fix error message for T_CONFIG_ARRAY config values if an entry value is not a string

From: Stefan Bühler <stbuehler@web.de>

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2987 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Stefan Bühler 2015-05-14 09:38:30 +00:00
parent c92496720d
commit df87b3ef98
2 changed files with 4 additions and 3 deletions

1
NEWS
View File

@ -17,6 +17,7 @@ NEWS
* print backtrace in assert logging with libunwind
* major refactoring of internal buffer/chunk handling
* [mod_auth] use crypt_r instead of crypt if available
* fix error message for T_CONFIG_ARRAY config values if an entry value is not a string
- 1.4.35 - 2014-03-12
* [network/ssl] fix build error if TLSEXT is disabled

View File

@ -56,9 +56,9 @@ int config_insert_values_internal(server *srv, array *ca, const config_values_t
array_insert_unique(cv[i].destination, (data_unset *)ds);
} else {
log_error_write(srv, __FILE__, __LINE__, "sssd",
"the key of an array can only be a string or a integer, variable:",
cv[i].key, "type:", da->value->data[j]->type);
log_error_write(srv, __FILE__, __LINE__, "sssbsd",
"the value of an array can only be a string, variable:",
cv[i].key, "[", da->value->data[j]->key, "], type:", da->value->data[j]->type);
return -1;
}