dgaudet 97/08/05 01:19:47
Modified: src http_core.c Log: Ugh, I suck. I made this mistake once, you'd think I wouldn't make it again. The append_arrays commit was messed up. Revision Changes Path 1.108 +1 -1 apache/src/http_core.c Index: http_core.c =================================================================== RCS file: /export/home/cvs/apache/src/http_core.c,v retrieving revision 1.107 retrieving revision 1.108 diff -u -r1.107 -r1.108 --- http_core.c 1997/08/05 06:44:59 1.107 +++ http_core.c 1997/08/05 08:19:46 1.108 @@ -201,7 +201,7 @@ if (!conf->access_name) conf->access_name = base->access_name; if (!conf->document_root) conf->document_root = base->document_root; conf->sec = append_arrays (p, base->sec, virt->sec); - conf->sec_url = append_arrays (p, base->sec, virt->sec_url); + conf->sec_url = append_arrays (p, base->sec_url, virt->sec_url); return conf; }