Showing with 4 additions and 1 deletion.
  1. +1 −1 python/plugins/sextante/CMakeLists.txt
  2. +3 −0 src/app/qgisapp.cpp
2 changes: 1 addition & 1 deletion python/plugins/sextante/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ADD_SUBDIRECTORY(modeler)
ADD_SUBDIRECTORY(otb)
ADD_SUBDIRECTORY(outputs)
ADD_SUBDIRECTORY(parameters)
ADD_SUBDIRECTORY(pymorph)
#ADD_SUBDIRECTORY(pymorph)
ADD_SUBDIRECTORY(r)
ADD_SUBDIRECTORY(saga)
ADD_SUBDIRECTORY(script)
Expand Down
3 changes: 3 additions & 0 deletions src/app/qgisapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8035,6 +8035,9 @@ void QgisApp::namSslErrors( QNetworkReply *reply, const QList<QSslError> &errors

foreach ( QSslError error, errors )
{
if ( error.error() == QSslError::NoError )
continue;

QgsDebugMsg( QString( "SSL error %1: %2" ).arg( error.error() ).arg( error.errorString() ) );

otherError = otherError || !ignoreErrors.contains( error.error() );
Expand Down