You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2003/11/15 22:42:17 UTC

cvs commit: httpd-2.0/modules/http http_protocol.c

trawick     2003/11/15 13:42:17

  Modified:    modules/http http_protocol.c
  Log:
  fix the EBCDIC path in send_all_header_fields() to actually return something
  
  the caller ignores it, but still...
  
  Revision  Changes    Path
  1.472     +1 -1      httpd-2.0/modules/http/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_protocol.c,v
  retrieving revision 1.471
  retrieving revision 1.472
  diff -u -r1.471 -r1.472
  --- http_protocol.c	31 Aug 2003 16:14:39 -0000	1.471
  +++ http_protocol.c	15 Nov 2003 21:42:17 -0000	1.472
  @@ -1212,7 +1212,7 @@
           apr_size_t len;
           char *tmp = apr_pstrcatv(r->pool, vec, vec_next - vec, &len);
           ap_xlate_proto_to_ascii(tmp, len);
  -        apr_brigade_write(h->bb, NULL, NULL, tmp, len);
  +        return apr_brigade_write(h->bb, NULL, NULL, tmp, len);
       }
   #else
       return apr_brigade_writev(h->bb, NULL, NULL, vec, vec_next - vec);