[SCM] ktp-auth-handler packaging branch, master, updated. debian/15.12.1-2-282-g080758e

Maximiliano Curia maxy at moszumanska.debian.org
Fri May 27 23:58:49 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-auth-handler.git;a=commitdiff;h=63f58a7

The following commit has been merged in the master branch:
commit 63f58a725483b61c17678d0a4600aea526c72699
Author: Daniele E. Domenichelli <daniele.domenichelli at gmail.com>
Date:   Sun Oct 28 02:31:36 2012 +0100

    Fix retrieving certificate path in TLS handler
---
 tls-cert-verifier-op.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tls-cert-verifier-op.cpp b/tls-cert-verifier-op.cpp
index 7e6008e..d40fa8b 100644
--- a/tls-cert-verifier-op.cpp
+++ b/tls-cert-verifier-op.cpp
@@ -31,7 +31,7 @@ TlsCertVerifierOp::TlsCertVerifierOp(const Tp::AccountPtr &account,
       m_connection(connection),
       m_channel(channel)
 {
-    QString certificatePath = qdbus_cast<QString>(channel->immutableProperties().value(
+    QDBusObjectPath certificatePath = qdbus_cast<QDBusObjectPath>(channel->immutableProperties().value(
                 TP_QT_IFACE_CHANNEL_TYPE_SERVER_TLS_CONNECTION + QLatin1String(".ServerCertificate")));
     m_hostname = qdbus_cast<QString>(channel->immutableProperties().value(
                 TP_QT_IFACE_CHANNEL_TYPE_SERVER_TLS_CONNECTION + QLatin1String(".Hostname")));
@@ -39,7 +39,7 @@ TlsCertVerifierOp::TlsCertVerifierOp(const Tp::AccountPtr &account,
                 TP_QT_IFACE_CHANNEL_TYPE_SERVER_TLS_CONNECTION + QLatin1String(".ReferenceIdentities")));
 
     m_authTLSCertificateIface = new Tp::Client::AuthenticationTLSCertificateInterface(
-            channel->dbusConnection(), channel->busName(), certificatePath);
+            channel->dbusConnection(), channel->busName(), certificatePath.path());
     connect(m_authTLSCertificateIface->requestAllProperties(),
             SIGNAL(finished(Tp::PendingOperation*)),
             SLOT(gotProperties(Tp::PendingOperation*)));

-- 
ktp-auth-handler packaging



More information about the pkg-kde-commits mailing list