summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2009-12-15 21:49:10 +0000
committerGrant Gayed <ggayed>2009-12-15 21:49:10 +0000
commit2b4fa4a479acc358b3a6dfd187753c88d7e67b78 (patch)
tree633da723af44b08263222d3a0a635829058469ca
parent898634456a9f5ef59130e35801aede9b1cd1732c (diff)
downloadeclipse.platform.swt-2b4fa4a479acc358b3a6dfd187753c88d7e67b78.tar.gz
eclipse.platform.swt-2b4fa4a479acc358b3a6dfd187753c88d7e67b78.tar.xz
eclipse.platform.swt-2b4fa4a479acc358b3a6dfd187753c88d7e67b78.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java
index 39fa9dcdc7..47f46598d4 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/PromptService2.java
@@ -170,9 +170,10 @@ int Alert (int /*long*/ aParent, int /*long*/ aDialogTitle, int /*long*/ aText)
* certificate so that the browser's nsIBadCertListener2 will be invoked.
*/
if (textLabel.indexOf ("ssl_error_bad_cert_domain") != -1 ||
+ textLabel.indexOf ("sec_error_ca_cert_invalid") != -1 ||
textLabel.indexOf ("sec_error_unknown_issuer") != -1 ||
textLabel.indexOf ("sec_error_untrusted_issuer") != -1 ||
- textLabel.indexOf ("sec_error_expired_certificate") != -1) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+ textLabel.indexOf ("sec_error_expired_certificate") != -1) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
if (browser != null) {
Mozilla mozilla = (Mozilla)browser.webBrowser;
mozilla.isRetrievingBadCert = true;