]> git.pld-linux.org Git - packages/wvstreams.git/commitdiff
- allow build with openssl >= 0.9.7
authorareq <areq@pld-linux.org>
Sat, 22 Mar 2003 16:05:02 +0000 (16:05 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wvstreams-rsapublickey.patch -> 1.1

wvstreams-rsapublickey.patch [new file with mode: 0644]

diff --git a/wvstreams-rsapublickey.patch b/wvstreams-rsapublickey.patch
new file mode 100644 (file)
index 0000000..28749ef
--- /dev/null
@@ -0,0 +1,20 @@
+--- wvstreams-3.70/src/crypto/wvcrypto.cc~     Sat Mar 22 15:59:57 2003
++++ wvstreams-3.70/src/crypto/wvcrypto.cc      Sat Mar 22 15:58:11 2003
+@@ -159,7 +159,7 @@
+     
+     if (priv)
+     {
+-      rsa = d2i_RSAPrivateKey(&rp, &bufp, hexbytes/2);
++      rsa = d2i_RSAPrivateKey(&rp,(const unsigned char **) &bufp, hexbytes/2);
+       prv = keystr;
+       
+       size_t size;
+@@ -170,7 +170,7 @@
+     }
+     else
+     {
+-      rsa = d2i_RSAPublicKey(&rp, &bufp, hexbytes/2);
++      rsa = d2i_RSAPublicKey(&rp, (const unsigned char **)&bufp, hexbytes/2);
+       prv = NULL;
+       pub = keystr;
+     }
This page took 0.076536 seconds and 4 git commands to generate.