stoddard 99/01/22 09:10:29
Modified: pthreads/src/modules/standard mod_autoindex.c mod_asis.c
Log:
Fix compile problem.
Revision Changes Path
1.2 +1 -1 apache-apr/pthreads/src/modules/standard/mod_autoindex.c
Index: mod_autoindex.c
===================================================================
RCS file:
/export/home/cvs/apache-apr/pthreads/src/modules/standard/mod_autoindex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mod_autoindex.c 1999/01/21 23:08:38 1.1
+++ mod_autoindex.c 1999/01/22 17:10:28 1.2
@@ -760,7 +760,7 @@
emit_preamble(r, title);
}
if (!plaintext) {
- ap_send_fd(f, r);
+ ap_send_fd(fileno(f), r);
}
else {
char buf[IOBUFSIZE + 1];
1.2 +1 -1 apache-apr/pthreads/src/modules/standard/mod_asis.c
Index: mod_asis.c
===================================================================
RCS file:
/export/home/cvs/apache-apr/pthreads/src/modules/standard/mod_asis.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mod_asis.c 1999/01/21 23:08:38 1.1
+++ mod_asis.c 1999/01/22 17:10:28 1.2
@@ -108,7 +108,7 @@
ap_send_http_header(r);
if (!r->header_only)
- ap_send_fd(f, r);
+ ap_send_fd(fileno(f), r);
ap_pfclose(r->pool, f);
return OK;