summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2018-02-20 22:25:34 -0500
committerReinhard Tartler <siretart@tauware.de>2018-02-20 22:25:34 -0500
commitddea3c3f70dbb80d48e710fdcaf4153c9c1fc2ee (patch)
treee3975c32101e7b3b5102be75ca43be8c517b93da
parent1ff570990914769be07b3ed3270549c4115b08ee (diff)
drop unneded patches
-rw-r--r--debian/patches/06-fixup-bbstored-certs.diff26
-rw-r--r--debian/patches/07-fix-ftbfs-signed-char.diff11
2 files changed, 0 insertions, 37 deletions
diff --git a/debian/patches/06-fixup-bbstored-certs.diff b/debian/patches/06-fixup-bbstored-certs.diff
deleted file mode 100644
index ff131305..00000000
--- a/debian/patches/06-fixup-bbstored-certs.diff
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Reinhard Tartler <siretart@tauware.de>
-Subject: Fixup bbstored for newer openssl
-
-It appears that modern openssl versions slightly changed the formatting
-for printing the common name of a certificate.
-
-I've also dropped the check against filename because I cound't get the
-filename to match against my local files - the check didn't appear too
-useful to me.
-
-
---- a/bin/bbstored/bbstored-certs.in
-+++ b/bin/bbstored/bbstored-certs.in
-@@ -171,12 +171,6 @@ sub cmd_sign
-
- my $acc = $1;
-
-- # check against filename
-- if(!($csr =~ m/(\A|\/)([A-Fa-f0-9]+)-/) || $2 ne $acc)
-- {
-- die "Certificate request filename does not match name in certificate ($common_name)"
-- }
--
- print <<__E;
-
- This certificate is for backup account
diff --git a/debian/patches/07-fix-ftbfs-signed-char.diff b/debian/patches/07-fix-ftbfs-signed-char.diff
deleted file mode 100644
index 559fb314..00000000
--- a/debian/patches/07-fix-ftbfs-signed-char.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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;