stoddard 99/11/05 07:41:07
Modified: src/include http_protocol.h
src/main http_protocol.c
src ApacheCore.def
Log:
Export ap_send_error_response. httpd.exp already exports it.
Revision Changes Path
1.50 +1 -1 apache-1.3/src/include/http_protocol.h
Index: http_protocol.h
===================================================================
RCS file: /home/cvs/apache-1.3/src/include/http_protocol.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- http_protocol.h 1999/04/20 17:51:37 1.49
+++ http_protocol.h 1999/11/05 15:41:01 1.50
@@ -103,7 +103,7 @@
* problem with the ErrorDocument.
*/
-void ap_send_error_response(request_rec *r, int recursive_error);
+API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error);
/* Set last modified header line from the lastmod date of the associated
file.
* Also, set content length.
1.280 +1 -1 apache-1.3/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_protocol.c,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -r1.279 -r1.280
--- http_protocol.c 1999/08/14 09:21:19 1.279
+++ http_protocol.c 1999/11/05 15:41:03 1.280
@@ -2383,7 +2383,7 @@
* and 5xx (server error) messages that have not been redirected to another
* handler via the ErrorDocument feature.
*/
-void ap_send_error_response(request_rec *r, int recursive_error)
+API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error)
{
int status = r->status;
int idx = ap_index_of_response(status);
1.20 +1 -1 apache-1.3/src/ApacheCore.def
Index: ApacheCore.def
===================================================================
RCS file: /home/cvs/apache-1.3/src/ApacheCore.def,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ApacheCore.def 1999/08/14 08:35:42 1.19
+++ ApacheCore.def 1999/11/05 15:41:06 1.20
@@ -359,4 +359,4 @@
ap_SHA1Update @354
ap_SHA1Final @355
ap_sha1_base64 @356
-
+ ap_send_error_response @357