From 5268ec265959564776b3e4f11e4cba6432c56103 Mon Sep 17 00:00:00 2001
From: Christian Persch <chpe@cvs.gnome.org>
Date: Mon, 22 Nov 2004 22:12:03 +0000
Subject: Fix string comparisions.

2004-11-22  Christian Persch  <chpe@cvs.gnome.org>

	* embed/mozilla/EventContext.cpp:

	Fix string comparisions.
---
 embed/mozilla/EventContext.cpp | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

(limited to 'embed')

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