diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-09-30 01:00:23 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-09-30 01:00:23 +0200 |
commit | aebf0a08c92abe8a7ae4fda812def246b1bf0266 (patch) | |
tree | d9cda860a25e94fbe9cd92897aa306e4033f2784 /kde3/kdebase3/kdebase-3.5.10-crypto-1.patch | |
parent | 2cca2f0b13750835aa49dd4ec4f1be7d9d11c171 (diff) | |
download | nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.gz nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.bz2 nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.xz nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.zip |
ajout de kdebase3#3.5.10-1
Diffstat (limited to 'kde3/kdebase3/kdebase-3.5.10-crypto-1.patch')
-rw-r--r-- | kde3/kdebase3/kdebase-3.5.10-crypto-1.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kde3/kdebase3/kdebase-3.5.10-crypto-1.patch b/kde3/kdebase3/kdebase-3.5.10-crypto-1.patch new file mode 100644 index 000000000..9568cffca --- /dev/null +++ b/kde3/kdebase3/kdebase-3.5.10-crypto-1.patch @@ -0,0 +1,29 @@ +--- kdebase-3.5.10-original/kcontrol/crypto/crypto.cpp 2006-10-01 19:31:49.000000000 +0200 ++++ kdebase-3.5.10/kcontrol/crypto/crypto.cpp 2010-09-28 21:42:18.000000000 +0200 +@@ -2321,7 +2321,7 @@ + unsigned int i; + SSL_CTX *ctx; + SSL *ssl; +-SSL_METHOD *meth; ++const SSL_METHOD *meth; + + SSLv2Box->clear(); + SSLv3Box->clear(); +@@ -2337,7 +2337,7 @@ + CipherItem *item; + for (i=0; ; i++) { + int j, k; +- SSL_CIPHER *sc; ++ const SSL_CIPHER *sc; + sc = (meth->get_cipher)(i); + if (!sc) + break; +@@ -2365,7 +2365,7 @@ + + for (i=0; ; i++) { + int j, k; +- SSL_CIPHER *sc; ++ const SSL_CIPHER *sc; + sc = (meth->get_cipher)(i); + if (!sc) + break; |