summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2017-06-20 22:30:18 -0400
committerReinhard Tartler <siretart@tauware.de>2017-06-26 22:24:47 -0400
commit73474cddf9f79c5520a984cb2e21a266ce80cb61 (patch)
treec0c2a5d36a2a7dcd38fa1b4bb96c0ba852245e44 /debian
parent8bf01d2c253af1fc82f07a02c1e02f8566da5f55 (diff)
Fix FTBFS for signed char architectures
Diffstat (limited to 'debian')
-rw-r--r--debian/patches/07-fix-ftbfs-signed-char.diff11
-rw-r--r--debian/patches/series1
2 files changed, 12 insertions, 0 deletions
diff --git a/debian/patches/07-fix-ftbfs-signed-char.diff b/debian/patches/07-fix-ftbfs-signed-char.diff
new file mode 100644
index 00000000..559fb314
--- /dev/null
+++ b/debian/patches/07-fix-ftbfs-signed-char.diff
@@ -0,0 +1,11 @@
+--- a/lib/httpserver/cdecode.cpp
++++ b/lib/httpserver/cdecode.cpp
+@@ -12,7 +12,7 @@ extern "C"
+
+ int base64_decode_value(char value_in)
+ {
+- static const char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
++ static const signed char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
+ static const char decoding_size = sizeof(decoding);
+ value_in -= 43;
+ if (value_in < 0 || value_in > decoding_size) return -1;
diff --git a/debian/patches/series b/debian/patches/series
index 56474132..a03c1985 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
03-adjust-syslog-facility.diff
05-dont_use_net_for_docs.diff
06-fixup-bbstored-certs.diff
+07-fix-ftbfs-signed-char.diff