diff options
author | Jeff Trawick <trawick@apache.org> | 2002-07-17 15:50:26 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-07-17 15:50:26 +0200 |
commit | 9437341232709f368bcf1bdcff25ab08f320a428 (patch) | |
tree | 1887bbddedccd6debe19cf14b35ec33071d4540e /modules/http | |
parent | Last missing symbols that I can find. (diff) | |
download | apache2-9437341232709f368bcf1bdcff25ab08f320a428.tar.xz apache2-9437341232709f368bcf1bdcff25ab08f320a428.zip |
add notes about a portability problem -- formatting apr_time_t
in hex
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96094 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_protocol.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index e15a44f9aa..58aa416590 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2803,6 +2803,7 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_byterange_filter(ap_filter_t *f, if (ctx->num_ranges > 1) { /* Is ap_make_content_type required here? */ const char *orig_ct = ap_make_content_type(r, r->content_type); + /* need APR_TIME_T_FMT_HEX */ ctx->boundary = apr_psprintf(r->pool, "%qx%lx", r->request_time, (long) getpid()); |