rbb 01/02/10 16:12:43
Modified: modules/generators mod_info.c
modules/proxy proxy_connect.c proxy_ftp.c proxy_http.c
proxy_util.c
buckets apr_brigade.c
Log:
Fix any compile breaks after moving apr_snprintf and apr_vsnprintf to
apr_strings.h
Revision Changes Path
1.27 +1 -0 httpd-2.0/modules/generators/mod_info.c
Index: mod_info.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/generators/mod_info.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -b -w -u -r1.26 -r1.27
--- mod_info.c 2001/02/10 15:01:16 1.26
+++ mod_info.c 2001/02/11 00:12:43 1.27
@@ -91,6 +91,7 @@
#include "http_main.h"
#include "http_protocol.h"
#include "util_script.h"
+#include "apr_strings.h"
#include "apr_lib.h"
#define APR_WANT_STRFUNC
#include "apr_want.h"
1.20 +1 -0 httpd-2.0/modules/proxy/proxy_connect.c
Index: proxy_connect.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_connect.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -b -w -u -r1.19 -r1.20
--- proxy_connect.c 2001/02/08 07:44:10 1.19
+++ proxy_connect.c 2001/02/11 00:12:43 1.20
@@ -61,6 +61,7 @@
#include "mod_proxy.h"
#include "http_log.h"
#include "http_main.h"
+#include "apr_strings.h"
#ifdef HAVE_BSTRING_H
#include <bstring.h> /* for IRIX, FD_SET calls bzero() */
1.29 +1 -0 httpd-2.0/modules/proxy/proxy_ftp.c
Index: proxy_ftp.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_ftp.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -b -w -u -r1.28 -r1.29
--- proxy_ftp.c 2001/02/08 07:44:10 1.28
+++ proxy_ftp.c 2001/02/11 00:12:43 1.29
@@ -62,6 +62,7 @@
#include "http_main.h"
#include "http_log.h"
#include "http_core.h"
+#include "apr_strings.h"
#define AUTODETECT_PWD
1.31 +1 -0 httpd-2.0/modules/proxy/proxy_http.c
Index: proxy_http.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_http.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -b -w -u -r1.30 -r1.31
--- proxy_http.c 2001/02/08 07:44:10 1.30
+++ proxy_http.c 2001/02/11 00:12:43 1.31
@@ -61,6 +61,7 @@
#define CORE_PRIVATE
#include "mod_proxy.h"
+#include "apr_strings.h"
#include "apr_buckets.h"
#include "util_filter.h"
#include "ap_config.h"
1.40 +1 -0 httpd-2.0/modules/proxy/proxy_util.c
Index: proxy_util.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_util.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -b -w -u -r1.39 -r1.40
--- proxy_util.c 2001/02/08 07:44:10 1.39
+++ proxy_util.c 2001/02/11 00:12:43 1.40
@@ -67,6 +67,7 @@
#include "util_date.h" /* get ap_checkmask() decl. */
#include "apr_md5.h"
#include "apr_pools.h"
+#include "apr_strings.h"
static int proxy_match_ipaddr(struct dirconn_entry *This, request_rec *r);
static int proxy_match_domainname(struct dirconn_entry *This, request_rec
*r);
1.8 +1 -1 apr-util/buckets/apr_brigade.c
Index: apr_brigade.c
===================================================================
RCS file: /home/cvs/apr-util/buckets/apr_brigade.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -b -w -u -r1.7 -r1.8
--- apr_brigade.c 2001/02/09 11:42:51 1.7
+++ apr_brigade.c 2001/02/11 00:12:43 1.8
@@ -53,7 +53,7 @@
*/
#include "apr.h"
-#include "apr_lib.h"
+#include "apr_strings.h"
#include "apr_pools.h"
#include "apr_tables.h"
#include "apr_buckets.h"