summaryrefslogtreecommitdiff
path: root/modules/loggers
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-07-26 15:53:15 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-07-26 15:53:15 +0000
commit5b71e358f3d86273c911a9577c20a983459c29e1 (patch)
treee175c2e55b247d4f7a688424700cca8c675fa8d6 /modules/loggers
parent8340254adeae6c3a9b5e681c8e8d60ddcab2f7f3 (diff)
downloadhttpd-5b71e358f3d86273c911a9577c20a983459c29e1.tar.gz
Change the length of the content args to apr_off_t identifiers, and fix
mod_negotation to treat a size of -1 and indeterminate, instead of 0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89727 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/loggers')
-rw-r--r--modules/loggers/mod_log_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c
index c42fdb03c6..a1ffcc5c69 100644
--- a/modules/loggers/mod_log_config.c
+++ b/modules/loggers/mod_log_config.c
@@ -381,7 +381,7 @@ static const char *clf_log_bytes_sent(request_rec *r, char *a)
return "-";
}
else {
- return apr_ltoa(r->pool, r->bytes_sent);
+ return apr_off_t_toa(r->pool, r->bytes_sent);
}
}