]> git.pld-linux.org Git - packages/lighttpd.git/blame - etag-32bit-overflow.patch
- add data_string_print_escape.patch to print accesslog.format properly
[packages/lighttpd.git] / etag-32bit-overflow.patch
CommitLineData
5e4b4b31
ER
1diff --git a/src/etag.c b/src/etag.c
2index 9ff585f..e7e9e3f 100644
3--- a/src/etag.c
4+++ b/src/etag.c
5@@ -44,7 +44,7 @@ int etag_mutate(buffer *mut, buffer *etag) {
6
7 buffer_reset(mut);
8 buffer_copy_string_len(mut, CONST_STR_LEN("\""));
9- buffer_append_long(mut, h);
10+ buffer_append_off_t(mut, h);
11 buffer_append_string_len(mut, CONST_STR_LEN("\""));
12
13 return 0;
This page took 0.027761 seconds and 4 git commands to generate.