You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2002/03/05 19:21:39 UTC

cvs commit: httpd-2.0/server error_bucket.c

jwoolley    02/03/05 10:21:39

  Modified:    server   error_bucket.c
  Log:
  Detabify those parts of this file which don't collide with the bucket
  freelist patch.  The remaining tabs go away for free with that patch.
  Submitted by:	Sander Striker
  Reviewed by:	Brian Pane
  
  Revision  Changes    Path
  1.10      +4 -4      httpd-2.0/server/error_bucket.c
  
  Index: error_bucket.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/error_bucket.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -d -u -r1.9 -r1.10
  --- error_bucket.c	22 Sep 2001 22:37:04 -0000	1.9
  +++ error_bucket.c	5 Mar 2002 18:21:39 -0000	1.10
  @@ -60,16 +60,16 @@
   #include <strings.h>
   #endif
   
  -static apr_status_t error_read(apr_bucket *b, const char **str, 
  -			       apr_size_t *len, apr_read_type_e block)
  +static apr_status_t error_read(apr_bucket *b, const char **str,
  +                               apr_size_t *len, apr_read_type_e block)
   {
       *str = NULL;
       *len = 0;
       return APR_SUCCESS;
   }
   
  -AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error, 
  -		const char *buf, apr_pool_t *p)
  +AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error,
  +                                              const char *buf, apr_pool_t *p)
   {
       ap_bucket_error *h;