if (conf->response_code_strings == NULL) {
conf->response_code_strings = new->response_code_strings;
}
- else (new->response_code_strings != NULL) {
+ else if (new->response_code_strings != NULL) {
/* If we merge, the merge-result must have it's own array
*/
conf->response_code_strings = apr_palloc(a,
if (!conf->sec_file) {
conf->sec_file = new->sec_file;
}
- else if (new->sec_file)
+ else if (new->sec_file) {
/* If we merge, the merge-result must have it's own array
*/
conf->sec_file = apr_array_append(a, base->sec_file, new->sec_file);