summaryrefslogtreecommitdiff
path: root/package/cbtt/patches/patch-base64_cpp
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-21 18:51:50 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-21 18:51:50 +0100
commit18430215845a1ba4adab10062d33204fd26bd8fb (patch)
tree33aa3ec2a66f0c7a170837135a74059359b42a4e /package/cbtt/patches/patch-base64_cpp
parentf799b95adfe39ddee1324e2901a823ecdf2fe44d (diff)
parent08c3724108f33060956438bff670ee1135f473b1 (diff)
Merge branch 'master' of git+ssh://wbx@openadk.org/git/openadk
Diffstat (limited to 'package/cbtt/patches/patch-base64_cpp')
-rw-r--r--package/cbtt/patches/patch-base64_cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/cbtt/patches/patch-base64_cpp b/package/cbtt/patches/patch-base64_cpp
deleted file mode 100644
index d69e6f997..000000000
--- a/package/cbtt/patches/patch-base64_cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- cbtt80-20060211-src.orig/base64.cpp 2006-02-07 18:44:58.000000000 +0100
-+++ cbtt80-20060211-src/base64.cpp 2009-06-01 19:00:07.000000000 +0200
-@@ -112,7 +112,7 @@ uchar pBase64[] = {
- /* Returns: bool - True (!0) if the operation was successful. */
- /* False (0) if the operation was unsuccessful. */
- /*---------------------------------------------------------------------------*/
--char *b64decode(const char *s)
-+char *b64decode(char *s)
- {
- int l = strlen(s); // Get length of Base64 string.
- char *b; // Decoding buffer pointers.
-@@ -121,7 +121,6 @@ char *b64decode(const char *s)
- int y = 0;
-
- static // Collating sequence...
-- const // ...independant "===".
- char pPad[] = {0x3d, 0x3d, 0x3d, 0x00};
-
- if (l % 4) // If it's not modulo 4, then it...