]> git.pld-linux.org Git - packages/lighttpd.git/commitdiff
- from stbuehler
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 24 May 2010 20:18:16 +0000 (20:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    etag-32bit-overflow.patch -> 1.1

etag-32bit-overflow.patch [new file with mode: 0644]

diff --git a/etag-32bit-overflow.patch b/etag-32bit-overflow.patch
new file mode 100644 (file)
index 0000000..7755b56
--- /dev/null
@@ -0,0 +1,13 @@
+diff --git a/src/etag.c b/src/etag.c
+index 9ff585f..e7e9e3f 100644
+--- a/src/etag.c
++++ b/src/etag.c
+@@ -44,7 +44,7 @@ int etag_mutate(buffer *mut, buffer *etag) {
+       buffer_reset(mut);
+       buffer_copy_string_len(mut, CONST_STR_LEN("\""));
+-      buffer_append_long(mut, h);
++      buffer_append_off_t(mut, h);
+       buffer_append_string_len(mut, CONST_STR_LEN("\""));
+       return 0;
This page took 1.808801 seconds and 4 git commands to generate.