ben 96/10/16 10:29:23
Modified: src http_request.c
Log:
Add missing location_walk()s.
Reviewed by: Alexei Kosut
Revision Changes Path
1.17 +3 -1 apache/src/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_request.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C3 -r1.16 -r1.17
*** http_request.c 1996/10/08 20:43:31 1.16
--- http_request.c 1996/10/16 17:29:22 1.17
***************
*** 50,56 ****
*
*/
! /* $Id: http_request.c,v 1.16 1996/10/08 20:43:31 brian Exp $ */
/*
* http_request.c: functions to get and process requests
--- 50,56 ----
*
*/
! /* $Id: http_request.c,v 1.17 1996/10/16 17:29:22 ben Exp $ */
/*
* http_request.c: functions to get and process requests
***************
*** 598,603 ****
--- 598,604 ----
*/
if ((res = directory_walk (rnew))
+ || (res = location_walk (rnew))
|| (res = file_walk (rnew))
|| (!some_auth_required (rnew) ? 0 :
((res = check_user_id (rnew)) || (res = check_auth (rnew))))
***************
*** 641,646 ****
--- 642,648 ----
make_full_path (rnew->pool, fdir, new_file));
if ((res = directory_walk (rnew))
+ || (res = location_walk (rnew))
|| (res = file_walk (rnew))
|| (res = check_access (rnew))
|| (!some_auth_required (rnew) ? 0 :