You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by gb...@apache.org on 2001/11/09 17:50:22 UTC

cvs commit: httpd-test/perl-framework/c-modules/echo_post mod_echo_post.c

gbenson     01/11/09 08:50:22

  Modified:    perl-framework/c-modules/echo_post mod_echo_post.c
  Log:
  Compile correctly for Apache 1.3.
  
  Submitted by: Joe Orton <jo...@redhat.com>
  
  Revision  Changes    Path
  1.6       +4 -1      httpd-test/perl-framework/c-modules/echo_post/mod_echo_post.c
  
  Index: mod_echo_post.c
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/c-modules/echo_post/mod_echo_post.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_echo_post.c	2001/10/22 10:46:35	1.5
  +++ mod_echo_post.c	2001/11/09 16:50:22	1.6
  @@ -24,7 +24,10 @@
       }
   
       if ((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)) != OK) {
  -        ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0,
  +        ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO,
  +#ifdef APACHE2
  +		     0,
  +#endif /* APACHE2 */
                        r->server,
                        "[mod_echo_post] ap_setup_client_block failed: %d", rc);
           return 0;