stoddard    99/11/05 07:45:06

  Modified:    src/include http_protocol.h
               src/main http_protocol.c
               src      ApacheCore.def
  Log:
  Export ap_send_error_response
  
  Revision  Changes    Path
  1.7       +1 -1      apache-2.0/src/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/http_protocol.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- http_protocol.h   1999/10/05 05:14:41     1.6
  +++ http_protocol.h   1999/11/05 15:45:03     1.7
  @@ -106,7 +106,7 @@
    * problem with the ErrorDocument.
    */
   
  -void ap_send_error_response(request_rec *r, int recursive_error);
  +API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error);
   
   /* Set last modified header line from the lastmod date of the associated 
file.
    * Also, set content length.
  
  
  
  1.36      +1 -1      apache-2.0/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- http_protocol.c   1999/11/03 12:47:23     1.35
  +++ http_protocol.c   1999/11/05 15:45:04     1.36
  @@ -2391,7 +2391,7 @@
    * and 5xx (server error) messages that have not been redirected to another
    * handler via the ErrorDocument feature.
    */
  -void ap_send_error_response(request_rec *r, int recursive_error)
  +API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error)
   {
       int status = r->status;
       int idx = ap_index_of_response(status);
  
  
  
  1.7       +1 -0      apache-2.0/src/ApacheCore.def
  
  Index: ApacheCore.def
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/ApacheCore.def,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ApacheCore.def    1999/10/11 15:47:45     1.6
  +++ ApacheCore.def    1999/11/05 15:45:05     1.7
  @@ -367,3 +367,4 @@
        ap_hook_auth_checker @362
        ap_hook_fixups @363
           regerror @364
  +        ap_send_error_response @365
  
  
  

Reply via email to