diff options
author | Rich Bowen <rbowen@apache.org> | 2015-04-15 17:47:42 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2015-04-15 17:47:42 +0200 |
commit | 7ea31abcd46fcb02a0430e019f7e9e41363c0395 (patch) | |
tree | d00c4dfda2df9d2575b12fac3a90c720fc2eff52 /docs/manual/mod/mod_log_config.xml | |
parent | Applies patch from bz57189, thanks go to Tom Fredrik Blenning. Adds (diff) | |
download | apache2-7ea31abcd46fcb02a0430e019f7e9e41363c0395.tar.xz apache2-7ea31abcd46fcb02a0430e019f7e9e41363c0395.zip |
Resolves bz56695 - %O can in fact be zero sometimes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673833 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_log_config.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml index 14b6d7af5f..2b86c0d21f 100644 --- a/docs/manual/mod/mod_log_config.xml +++ b/docs/manual/mod/mod_log_config.xml @@ -253,8 +253,9 @@ You need to enable <module>mod_logio</module> to use this.</td></tr> <tr><td><code>%O</code></td> - <td>Bytes sent, including headers. Cannot be zero. You need to - enable <module>mod_logio</module> to use this.</td></tr> + <td>Bytes sent, including headers. May be zero in rare cases + such as when a request is aborted before a response is sent. + You need to enable <module>mod_logio</module> to use this.</td></tr> <tr><td><code>%S</code></td> <td>Bytes transferred (received and sent), including request and headers, |