]> git.pld-linux.org Git - packages/lighttpd.git/blob - etag-32bit-overflow.patch
- from stbuehler
[packages/lighttpd.git] / etag-32bit-overflow.patch
1 diff --git a/src/etag.c b/src/etag.c
2 index 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.088346 seconds and 4 git commands to generate.