Changeset 1613
- Timestamp:
- 07/07/08 17:01:43 (3 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/connection.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1612 r1613 1 1 2008-07-07 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/connection.c (cherokee_connection_clean_for_respin): 4 Patch to fix a problem that was making the server to fail the QA 5 test number 169: Internal respins were not handled properly when 6 the original request was using a special Directory Root. 2 7 3 8 * qa/169-Pipermail.py, qa/Makefile.am (EXTRA_DIST): Added new cherokee/trunk/cherokee/connection.c
r1611 r1613 1890 1890 cherokee_connection_clean_for_respin (cherokee_connection_t *conn) 1891 1891 { 1892 TRACE(ENTRIES, "Clean for respin: conn=%p\n", conn); 1893 1894 if (cherokee_connection_use_webdir(conn)) { 1895 cherokee_buffer_prepend_buf (&conn->request, &conn->web_directory); 1896 cherokee_buffer_clean (&conn->local_directory); 1897 BIT_UNSET (conn->options, conn_op_document_root); 1898 } 1899 1892 1900 cherokee_buffer_clean (&conn->web_directory); 1893 1901 1902 TRACE_CONN(conn); 1894 1903 return ret_ok; 1895 1904 }