summaryrefslogtreecommitdiffstats
path: root/redhat/tdebase/r1201523.diff
blob: 7272968b2fc2ba9b12a8f2e86ada04f9e45b3cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Index: kdebase/kcontrol/crypto/crypto.cpp
===================================================================
--- kdebase/kcontrol/crypto/crypto.cpp	(revision 1201522)
+++ kdebase/kcontrol/crypto/crypto.cpp	(revision 1201523)
@@ -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;