aboutsummaryrefslogtreecommitdiffstats
path: root/main/libmcrypt/fix_enigma.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-03-27 07:57:10 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-03-29 15:55:32 +0000
commitb43c0f2c41358639994e61387db7edc49c8b0a9e (patch)
treed28a000453f901730f1793d945b3b4fff4c4fa17 /main/libmcrypt/fix_enigma.patch
parent3d69d14c425b8ae6bc28d5936cd602c0e5e977ab (diff)
downloadaports-b43c0f2c41358639994e61387db7edc49c8b0a9e.tar.bz2
aports-b43c0f2c41358639994e61387db7edc49c8b0a9e.tar.xz
community/libmcrypt: move from main
Diffstat (limited to 'main/libmcrypt/fix_enigma.patch')
-rw-r--r--main/libmcrypt/fix_enigma.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/main/libmcrypt/fix_enigma.patch b/main/libmcrypt/fix_enigma.patch
deleted file mode 100644
index bdcff7cfbe..0000000000
--- a/main/libmcrypt/fix_enigma.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917203
-
---- src/modules/algorithms/enigma.h.orig 2002-03-09 21:17:08.000000000 +0100
-+++ src/modules/algorithms/enigma.h 2019-04-07 13:54:03.000000000 +0200
-@@ -3,11 +3,11 @@
- #define MASK 0377
-
- typedef struct crypt_key {
-- char t1[ROTORSZ];
-- char t2[ROTORSZ];
-- char t3[ROTORSZ];
-- char deck[ROTORSZ];
-- char cbuf[13];
-+ signed char t1[ROTORSZ];
-+ signed char t2[ROTORSZ];
-+ signed char t3[ROTORSZ];
-+ signed char deck[ROTORSZ];
-+ signed char cbuf[13];
- int n1, n2, nr1, nr2;
- } CRYPT_KEY;
- \ No newline at end of file