summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorVictor J. Orlikowski <orlikowski@apache.org>2002-07-10 08:01:14 +0200
committerVictor J. Orlikowski <orlikowski@apache.org>2002-07-10 08:01:14 +0200
commitd982829aa1f6cf8baabf77cd300983cb8de8ee7b (patch)
tree73866642f38f07bee8df269b3669a66c29dc3971 /server
parent Narrow service manager access to what is actually needed to perform (diff)
downloadapache2-d982829aa1f6cf8baabf77cd300983cb8de8ee7b.tar.xz
apache2-d982829aa1f6cf8baabf77cd300983cb8de8ee7b.zip
Continue the Bill Rowe apr_size_t crusade.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95993 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/log.c2
-rw-r--r--server/vhost.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/log.c b/server/log.c
index 091f8fcfa4..4522ea24cf 100644
--- a/server/log.c
+++ b/server/log.c
@@ -387,7 +387,7 @@ static void log_error_core(const char *file, int line, int level,
const char *fmt, va_list args)
{
char errstr[MAX_STRING_LEN];
- size_t len, errstrlen;
+ apr_size_t len, errstrlen;
apr_file_t *logf = NULL;
const char *referer;
int level_and_mask = level & APLOG_LEVELMASK;
diff --git a/server/vhost.c b/server/vhost.c
index 1ca68733d9..324b305bfe 100644
--- a/server/vhost.c
+++ b/server/vhost.c
@@ -185,7 +185,7 @@ static const char *get_addresses(apr_pool_t *p, const char *w_,
server_addr_rec *sar;
char *w, *host, *scope_id;
int wild_port;
- size_t wlen;
+ apr_size_t wlen;
apr_port_t port;
apr_status_t rv;