From 5268ec265959564776b3e4f11e4cba6432c56103 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 22 Nov 2004 22:12:03 +0000 Subject: Fix string comparisions. 2004-11-22 Christian Persch * embed/mozilla/EventContext.cpp: Fix string comparisions. --- ChangeLog | 6 ++++++ embed/mozilla/EventContext.cpp | 16 ++++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 06edddcc1..f581ff278 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-11-22 Christian Persch + + * embed/mozilla/EventContext.cpp: + + Fix string comparisions. + 2004-11-22 Christian Persch * embed/mozilla/EventContext.cpp: diff --git a/embed/mozilla/EventContext.cpp b/embed/mozilla/EventContext.cpp index 2af47d56d..1ed3e1b29 100644 --- a/embed/mozilla/EventContext.cpp +++ b/embed/mozilla/EventContext.cpp @@ -802,14 +802,14 @@ nsresult EventContext::CheckLinkScheme (const nsAString &link) rv = uri->GetScheme (scheme); if (NS_FAILED (rv)) return NS_ERROR_FAILURE; - if (g_ascii_strcasecmp (scheme.get(), "http") || - g_ascii_strcasecmp (scheme.get(), "https") || - g_ascii_strcasecmp (scheme.get(), "ftp") || - g_ascii_strcasecmp (scheme.get(), "file") || - g_ascii_strcasecmp (scheme.get(), "data") || - g_ascii_strcasecmp (scheme.get(), "resource") || - g_ascii_strcasecmp (scheme.get(), "about") || - g_ascii_strcasecmp (scheme.get(), "gopher")) + if (g_ascii_strcasecmp (scheme.get(), "http") == 0 || + g_ascii_strcasecmp (scheme.get(), "https") == 0 || + g_ascii_strcasecmp (scheme.get(), "ftp") == 0 || + g_ascii_strcasecmp (scheme.get(), "file") == 0 || + g_ascii_strcasecmp (scheme.get(), "data") == 0 || + g_ascii_strcasecmp (scheme.get(), "resource") == 0 || + g_ascii_strcasecmp (scheme.get(), "about") == 0 || + g_ascii_strcasecmp (scheme.get(), "gopher") == 0) { SetIntProperty ("link-has-web-scheme", TRUE); } -- cgit v1.2.3