Magellan Linux

Annotation of /trunk/kftpgrabber/patches/kftpgrabber-0.8.0_beta2-ssl-compile-fix.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (hide annotations) (download)
Tue May 8 20:06:05 2007 UTC (17 years, 1 month ago) by niro
File size: 565 byte(s)
-import

1 niro 144 --- kftpgrabber-0.8.0-beta2/kftpgrabber/src/engine/ssl.cpp 2006-11-07 20:51:15.000000000 +0100
2     +++ kftpgrabber-0.8.0-beta2-2/kftpgrabber/src/engine/ssl.cpp 2006-12-29 01:00:09.000000000 +0100
3     @@ -144,7 +144,7 @@
4     QByteArray qba, qbb = cert.copy();
5     KCodecs::base64Decode(qbb, qba);
6     #if OPENSSL_VERSION_NUMBER > 0x009070afL
7     - const unsigned char *qbap = reinterpret_cast<unsigned char *>(qba.data());
8     + unsigned char *qbap = reinterpret_cast<unsigned char *>(qba.data());
9     #else
10     unsigned char *qbap = reinterpret_cast<unsigned char *>(qba.data());
11     #endif