You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2004/04/16 05:21:03 UTC

cvs commit: httpd-apreq-2/env/c-modules/apreq_request_test mod_apreq_request_test.c

joes        2004/04/15 20:21:03

  Modified:    env/c-modules/apreq_request_test mod_apreq_request_test.c
  Log:
  Fix syntax error: missing paren.
  
  Revision  Changes    Path
  1.6       +1 -1      httpd-apreq-2/env/c-modules/apreq_request_test/mod_apreq_request_test.c
  
  Index: mod_apreq_request_test.c
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/env/c-modules/apreq_request_test/mod_apreq_request_test.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_apreq_request_test.c	13 Apr 2004 21:46:38 -0000	1.5
  +++ mod_apreq_request_test.c	16 Apr 2004 03:21:03 -0000	1.6
  @@ -54,7 +54,7 @@
       while ((s =ap_get_brigade(r->input_filters, bb, AP_MODE_READBYTES,
                                 APR_BLOCK_READ, HUGE_STRING_LEN)) == APR_SUCCESS)
       {
  -        if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(bb))
  +        if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(bb)))
               break;
   
           apr_brigade_cleanup(bb);