diff options
author | Adam Harvey <aharvey@php.net> | 2015-11-08 15:15:46 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-01-11 21:36:53 +0100 |
commit | 3217c033a511bb8db1948620b3a1bade32b73b59 (patch) | |
tree | 7e92dd6e3d5065dca4f9cf74e0a6eb689c3a8899 /sapi/apache2handler/sapi_apache2.c | |
parent | c895dc5b5bff8e3f7b919a04fe73969d14993e68 (diff) | |
download | php-git-3217c033a511bb8db1948620b3a1bade32b73b59.tar.gz |
Insert bug number.
Diffstat (limited to 'sapi/apache2handler/sapi_apache2.c')
-rw-r--r-- | sapi/apache2handler/sapi_apache2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 8861d97c3e..d25fe3f265 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -115,7 +115,7 @@ php_apache_sapi_header_content_length(const char *val) if (sizeof(apr_off_t) >= 8) { /* We're going to assume that long long is always 64 bits. If it's * smaller, we're not doing any worse than we would have before bug - * #XXXXX was fixed anyway, since we'll just truncate to 32 bits. */ + * #70879 was fixed anyway, since we'll just truncate to 32 bits. */ return (apr_off_t) strtoll(val, (char **) NULL, 10); } |