]> git.pld-linux.org Git - packages/apache-mod_pagespeed.git/blame - apache-mod_pagespeed-format.patch
- added format patch (fix size_t vs uint64_t format string)
[packages/apache-mod_pagespeed.git] / apache-mod_pagespeed-format.patch
CommitLineData
6772b4d7
JB
1--- modpagespeed-1.9.32.4/third_party/serf/src/buckets/bwtp_buckets.c.orig 2015-07-14 01:17:19.000000000 +0200
2+++ modpagespeed-1.9.32.4/third_party/serf/src/buckets/bwtp_buckets.c 2019-04-16 15:58:06.644879886 +0200
3@@ -228,7 +228,7 @@
4 req_len = apr_snprintf(ctx->req_line, sizeof(ctx->req_line),
5 "%s %d " "%" APR_UINT64_T_HEX_FMT " %s%s\r\n",
6 (ctx->type ? "BWM" : "BWH"),
7- ctx->channel, calc_header_size(ctx->headers),
8+ ctx->channel, (apr_uint64_t)calc_header_size(ctx->headers),
9 (ctx->open ? "OPEN " : ""),
10 ctx->phrase);
11 new_bucket = serf_bucket_simple_copy_create(ctx->req_line, req_len,
This page took 0.062922 seconds and 4 git commands to generate.