summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermedia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewermedia.cpp')
-rw-r--r--indra/newview/llviewermedia.cpp22
1 files changed, 4 insertions, 18 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp
index 71ce8ed9d6..499165135a 100644
--- a/indra/newview/llviewermedia.cpp
+++ b/indra/newview/llviewermedia.cpp
@@ -1885,26 +1885,12 @@ bool LLViewerMediaImpl::initializePlugin(const std::string& media_type)
media_source->ignore_ssl_cert_errors(true);
}
-
- // HACK: This is absurd but it'll do for now until we can
- // find out what's wrong with Qt SSL certs
-#if (defined(LL_WINDOWS) )
- // Always do this for Windows platforms
+ // the correct way to deal with certs it to load ours from CA.pem and append them to the ones
+ // Qt/WebKit loads from your system location.
+ // Note: This needs the new CA.pem file with the Equifax Secure Certificate Authority
+ // cert at the bottom: (MIIDIDCCAomgAwIBAgIENd70zzANBg)
std::string ca_path = gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "CA.pem" );
media_source->addCertificateFilePath( ca_path );
-#elif (defined(LL_DARWIN) )
- // get Mac OS X version numbers
- S32 os_major_version = LLAppViewer::instance()->getOSInfo().mMajorVer;
- S32 os_minor_version = LLAppViewer::instance()->getOSInfo().mMinorVer;
- llinfos << "OS version is " << os_major_version << " --- " << os_minor_version << llendl;
-
- // Only do this for Leopard (10.5.x) - not Snow Leopard (10.6.x)
- if ( os_major_version == 5 )
- {
- std::string ca_path = gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "CA.pem" );
- media_source->addCertificateFilePath( ca_path );
- }
-#endif
media_source->proxy_setup(gSavedSettings.getBOOL("BrowserProxyEnabled"), gSavedSettings.getString("BrowserProxyAddress"), gSavedSettings.getS32("BrowserProxyPort"));