* GSWAdaptors/Apache/mod_gsweb.c : Include http_protocol.h

unconditionally.
	(sendResponse): Removed cast which was only valid for custom
	Apache installations.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16231 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2003-03-23 12:29:39 +00:00
parent f5ae721fbd
commit 497bd7bc78
2 changed files with 12 additions and 5 deletions

View file

@ -1,8 +1,16 @@
2003-03-23 David Ayers <d.ayers@inode.at>
* GSWAdaptors/Apache/mod_gsweb.c : Include http_protocol.h
unconditionally.
(sendResponse): Removed cast which was only valid for custom
Apache installations.
2003-03-21 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb.framework/GSWGNUmakefile:
o removed NSObject+IVarAccess+PerformSel.*
* GSWeb.framework/GSWConstants.m:
o fix GSWHTTPHeader_Response_HeaderLineEnd: remove space at the begining
o fix GSWHTTPHeader_Response_HeaderLineEnd: remove space
at the begining
o use RCS_ID
* GSWeb.framework/Adaptors/common/GSWHTTPResponse.c:
o fix status in GSWHTTPResponse_New()
@ -19,7 +27,8 @@
o new method to begin rewrite exception handling
* GSWeb.framework/GSWRequest.m:
o logs
o fix in -_getFormValuesFromMultipartFormData to handle more than one value per name
o fix in -_getFormValuesFromMultipartFormData to handle
more than one value per name
o use RCS_ID
o -fix bad types in uriElementForKey:
* GSWeb.framework/GSWConditional.m:

View file

@ -47,9 +47,7 @@
#include <http_request.h>
#include <http_core.h>
#ifdef Apache2
#include <http_protocol.h>
#endif
// Module Definition:
@ -450,7 +448,7 @@ sendResponse(request_rec *p_pRequestRec,
GSWLog(GSW_DEBUG,pServerRec,"p_pRequestRec->content_type=%s",p_pRequestRec->content_type);
// Set content length
ap_set_content_length(p_pRequestRec, (uintmax_t)p_pHTTPResponse->uContentLength);
ap_set_content_length(p_pRequestRec, p_pHTTPResponse->uContentLength);
// Now Send response...