You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/12/14 04:29:14 UTC

cvs commit: httpd-2.0/modules/http http_request.c

wrowe       01/12/13 19:29:14

  Modified:    modules/http http_request.c
  Log:
    A style change for ken :)
  
  Revision  Changes    Path
  1.122     +2 -1      httpd-2.0/modules/http/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_request.c,v
  retrieving revision 1.121
  retrieving revision 1.122
  diff -u -r1.121 -r1.122
  --- http_request.c	2001/11/30 05:29:40	1.121
  +++ http_request.c	2001/12/14 03:29:13	1.122
  @@ -288,8 +288,9 @@
       access_status = ap_run_quick_handler(r);
       if (access_status == DECLINED) {
           access_status = ap_process_request_internal(r);
  -        if (access_status == OK)
  +        if (access_status == OK) {
               access_status = ap_invoke_handler(r);
  +        }
           else if (access_status == DONE) {
               /* e.g., something not in storage like TRACE */
               access_status = OK;