Fix linear alphabet string errors

(cherry picked from commit 80bc593eb3)
v3.5.13-sru
Timothy Pearson 13 years ago committed by Slávek Banko
parent 1c7ec66396
commit f4b37d7631

@ -1960,7 +1960,7 @@ Bugfixes
deleted without ever having been initialised. Also init some other vars ASAP. (700035) deleted without ever having been initialised. Also init some other vars ASAP. (700035)
- kolab/issue1712 Update revision when adding new attendees.(663228) - kolab/issue1712 Update revision when adding new attendees.(663228)
- kolab/issue1672 Make sure to open the folder when saving a single message as well.(664661) - kolab/issue1672 Make sure to open the folder when saving a single message as well.(664661)
- Fix lack of double-quotes around folder name, making GEQUOTAROOT fail on folders with a space in the - Fix lack of double-quotes around folder name, making GETQUOTAROOT fail on folders with a space in the
name.(665276) name.(665276)
- Port the ability to add and remove subfolders from korganizer's resource view from proko2. (665274) - Port the ability to add and remove subfolders from korganizer's resource view from proko2. (665274)
- kolab/issue1721 Don't exit when the popup menu is canceled.(665679) - kolab/issue1721 Don't exit when the popup menu is canceled.(665679)

@ -37,7 +37,7 @@
// adapted to QT-Toolkit by Sven Carstens <s.carstens@gmx.de> 2000 // adapted to QT-Toolkit by Sven Carstens <s.carstens@gmx.de> 2000
static unsigned char base64chars[] = static unsigned char base64chars[] =
"ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,"; "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
#define UNDEFINED 64 #define UNDEFINED 64
#define MAXLINE 76 #define MAXLINE 76

@ -337,7 +337,7 @@ TQCString encodeRFC2047String(const TQString &src, const char *charset,
TQCString uniqueString() TQCString uniqueString()
{ {
static char chars[] = "0123456789abcdefghijklmnopqrstuvxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ"; static char chars[] = "0123456789abcdefghijklmnopqrstuvxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
time_t now; time_t now;
TQCString ret; TQCString ret;
char p[11]; char p[11];

@ -353,7 +353,7 @@ static int to_cr(const char* srcBuf, size_t srcLen, char* destBuf,
} }
static char base64tab[] = "ABCDEFGHIJKLMNOPTQRSTUVWXYZ" static char base64tab[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz0123456789+/"; "abcdefghijklmnopqrstuvwxyz0123456789+/";
static char base64idx[128] = { static char base64idx[128] = {

@ -231,7 +231,7 @@ void DwMediaType::SetBoundary(const DwString& aStr)
void DwMediaType::CreateBoundary(unsigned aLevel) void DwMediaType::CreateBoundary(unsigned aLevel)
{ {
// Create a random printable string and set it as the boundary parameter // Create a random printable string and set it as the boundary parameter
static const char c[] = "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; static const char c[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
const int cLen = 64; const int cLen = 64;
char buf[80]; char buf[80];
strcpy(buf, "Boundary-"); strcpy(buf, "Boundary-");

Loading…
Cancel
Save