aboutsummaryrefslogtreecommitdiffstats
path: root/main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-07-27 08:08:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-07-27 11:13:28 +0000
commite6c1f4a663bf13c35e0a92ce7243d282a4a29c8c (patch)
tree0d6a91e95cc690d058f478f4543141ac060866e2 /main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch
parentaa12abff47161235a3c11ec5c92465e98674234b (diff)
downloadaports-e6c1f4a663bf13c35e0a92ce7243d282a4a29c8c.tar.bz2
aports-e6c1f4a663bf13c35e0a92ce7243d282a4a29c8c.tar.xz
main/lighttpd: upgrade to 1.4.36
Diffstat (limited to 'main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch')
-rw-r--r--main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch b/main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch
deleted file mode 100644
index f53cc5b2cf..0000000000
--- a/main/lighttpd/0024-crc32-fix-method-signature-const-pointer.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From deceae78c9584350d17a9b5b9a5d2fef3def5e45 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de>
-Date: Sun, 8 Feb 2015 19:10:56 +0000
-Subject: [PATCH 24/29] [crc32] fix method signature (const pointer)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-From: Stefan Bühler <stbuehler@web.de>
-
-git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2984 152afb58-edef-0310-8abb-c4023f1b3aa9
----
- src/crc32.c | 2 +-
- src/crc32.h | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/crc32.c b/src/crc32.c
-index cdad7bc..b19bec5 100644
---- a/src/crc32.c
-+++ b/src/crc32.c
-@@ -70,7 +70,7 @@ static const unsigned int crc_c[256] = {
- };
-
-
--uint32_t generate_crc32c(char *buffer, size_t length) {
-+uint32_t generate_crc32c(const char *buffer, size_t length) {
- size_t i;
- uint32_t crc32 = ~0L;
-
-diff --git a/src/crc32.h b/src/crc32.h
-index c5b4245..10e0e90 100644
---- a/src/crc32.h
-+++ b/src/crc32.h
-@@ -13,6 +13,6 @@
- # include <inttypes.h>
- #endif
-
--uint32_t generate_crc32c(char *string, size_t length);
-+uint32_t generate_crc32c(const char *string, size_t length);
-
- #endif
---
-2.4.5
-