Skip to content

Commit

Permalink
[auth] fix build on mac (fixes 08ec25b)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 16, 2015
1 parent b7fea57 commit a6a2982
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/auth/qgsauthmanager.cpp
Expand Up @@ -2363,7 +2363,8 @@ const QList<QSslCertificate> QgsAuthManager::getSystemRootCAs()
#ifndef Q_OS_MAC
return QSslSocket::systemCaCertificates();
#else
return QNetworkRequest::sslConfiguration().caCertificates();
QNetworkRequest req;
return req.sslConfiguration().caCertificates();
#endif
}

Expand Down

0 comments on commit a6a2982

Please sign in to comment.