summaryrefslogtreecommitdiffstats
path: root/redhat/applications/konversation/bp003-440010aa.diff
diff options
context:
space:
mode:
authorFrancois Andriot <francois.andriot@free.fr>2012-05-07 01:06:08 +0200
committerFrancois Andriot <francois.andriot@free.fr>2012-05-07 01:06:08 +0200
commit9750a057f2f36c5b88a5bc53c0a051b605dac061 (patch)
tree4f205d3ed4ecf8d2df665b566674d12372363c7f /redhat/applications/konversation/bp003-440010aa.diff
parent6bb431be79e8f75c26bbf0f81749fa7738965f65 (diff)
downloadtde-packaging-9750a057f2f36c5b88a5bc53c0a051b605dac061.tar.gz
tde-packaging-9750a057f2f36c5b88a5bc53c0a051b605dac061.zip
RHEL/Fedora: massive updates for Fedora 17 (TDE 3.5.13 entire build)
Diffstat (limited to 'redhat/applications/konversation/bp003-440010aa.diff')
-rw-r--r--redhat/applications/konversation/bp003-440010aa.diff36
1 files changed, 36 insertions, 0 deletions
diff --git a/redhat/applications/konversation/bp003-440010aa.diff b/redhat/applications/konversation/bp003-440010aa.diff
new file mode 100644
index 000000000..5d797ddf1
--- /dev/null
+++ b/redhat/applications/konversation/bp003-440010aa.diff
@@ -0,0 +1,36 @@
+commit 440010aa593e209ce5993a73b1b7cb0a843a2716
+Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
+Date: 1327529820 -0600
+
+ Fix linear alphabet string errors
+
+diff --git a/konversation/src/blowfish/b64stuff.cpp b/konversation/src/blowfish/b64stuff.cpp
+index 79d5e64..72f0776 100644
+--- a/konversation/src/blowfish/b64stuff.cpp
++++ b/konversation/src/blowfish/b64stuff.cpp
+@@ -36,10 +36,10 @@
+ //---------------------------------------------------------------------------
+
+ //---------------------------------------------------------------------------
+-//static char b64table[64] = "ABCDEFGHIJKLMNOPTQRSTUVWXYZ"
++//static char b64table[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ // "abcdefghijklmnopqrstuvwxyz"
+ // "0123456789+/";
+-static char b64table[] = "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
++static char b64table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+
+ /* Accepts a binary buffer with an associated size.
+ * Returns a base64-encoded, NULL-terminated string.
+diff --git a/konversation/src/blowfish/oldblowfish.cpp b/konversation/src/blowfish/oldblowfish.cpp
+index 3eab870..1f274db 100644
+--- a/konversation/src/blowfish/oldblowfish.cpp
++++ b/konversation/src/blowfish/oldblowfish.cpp
+@@ -271,7 +271,7 @@ void oldCBlowFish::Decode (BYTE * pInput, BYTE * pOutput, DWORD lSize)
+ #define SALT2 0x23f6b095
+
+ // Convert 64-bit encrypted passphrase to text for userfile
+-char base64[] = "./0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ";
++char base64[] = "./0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
+
+ int base64dec(char c)
+ {