Permalink
Browse files

Qt 5.4: OpenSSL: addressed issue of some methods not being resolved (c…

…loses #516).
  • Loading branch information...
1 parent 6925663 commit 57c5fb698b6f572e8ff1a87236682438aef32acc @agarny agarny committed Feb 25, 2015
Showing with 8 additions and 0 deletions.
  1. +8 −0 src/misc/cliutils.cpp
View
@@ -104,6 +104,14 @@ void initApplication(QCoreApplication *pApp, QString *pAppDate)
OpenCOR::removeGlobalInstances();
+ // Ignore SSL-related warnings
+ // Note #1: this is to address an issue with QSslSocket not being able to
+ // resolve some methods...
+ // Note #2: see https://github.com/opencor/opencor/issues/516 for more
+ // information...
+
+ qputenv("QT_LOGGING_RULES", "qt.network.ssl.warning=false");
+
// Set the name of the application
pApp->setApplicationName(QFileInfo(pApp->applicationFilePath()).baseName());

0 comments on commit 57c5fb6

Please sign in to comment.