You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/05/06 17:04:13 UTC

cvs commit: apache-1.3/src/support apxs.pl

rse         98/05/06 08:04:12

  Modified:    src/include http_protocol.h
               src/support apxs.pl
  Log:
  Fix APXS -g option after the Big Renaming.
  
  Revision  Changes    Path
  1.43      +2 -2      apache-1.3/src/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/http_protocol.h,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- http_protocol.h	1998/05/03 17:31:09	1.42
  +++ http_protocol.h	1998/05/06 15:04:11	1.43
  @@ -77,9 +77,9 @@
                         const char *fieldval);
   
   /* Send the minimal part of an HTTP response header... but modules should be
  - * very careful about using this, and should prefer send_http_header().
  + * very careful about using this, and should prefer ap_send_http_header().
    * Much of the HTTP/1.1 implementation correctness depends on code in
  - * send_http_header().
  + * ap_send_http_header().
    */
   API_EXPORT(void) ap_basic_http_header(request_rec *r);
   
  
  
  
  1.5       +2 -2      apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- apxs.pl	1998/04/15 09:46:57	1.4
  +++ apxs.pl	1998/05/06 15:04:12	1.5
  @@ -543,9 +543,9 @@
   static int %NAME%_handler(request_rec *r)
   {
       r->content_type = "text/html";      
  -    send_http_header(r);
  +    ap_send_http_header(r);
       if (!r->header_only)
  -        rputs("The sample page from mod_%NAME%.c\n", r);
  +        ap_rputs("The sample page from mod_%NAME%.c\n", r);
       return OK;
   }