mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-07 19:30:47 -04:00
14 lines
524 B
Plaintext
14 lines
524 B
Plaintext
$NetBSD: patch-bg,v 1.5 2009/08/31 20:54:27 wiz Exp $
|
|
|
|
--- kio/kssl/ksmimecrypto.cc.orig 2005-10-11 04:05:44.000000000 +1300
|
|
+++ kio/kssl/ksmimecrypto.cc
|
|
@@ -87,7 +87,7 @@ KSMIMECryptoPrivate::KSMIMECryptoPrivate
|
|
|
|
|
|
STACK_OF(X509) *KSMIMECryptoPrivate::certsToX509(QPtrList<KSSLCertificate> &certs) {
|
|
- STACK_OF(X509) *x509 = sk_new(NULL);
|
|
+ STACK_OF(X509) *x509 = reinterpret_cast<STACK_OF(X509)*>(sk_new(NULL));
|
|
KSSLCertificate *cert = certs.first();
|
|
while(cert) {
|
|
sk_X509_push(x509, cert->getCert());
|