Blob Blame History Raw
From bb3fbbdd6798d22ba515dc9332b24d87e0fd26a1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= <fpeters@0d.be>
Date: Fri, 3 Jan 2014 20:29:03 +0100
Subject: [PATCH] uri-tester: do not block on rules we do not handle

https://bugzilla.gnome.org/show_bug.cgi?id=711124
---
 embed/uri-tester.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/embed/uri-tester.c b/embed/uri-tester.c
index 5c4d470..ab701c4 100644
--- a/embed/uri-tester.c
+++ b/embed/uri-tester.c
@@ -665,6 +665,9 @@ uri_tester_parse_line (UriTester *tester, char *line)
   /* FIXME: No support for [include] and [exclude] tags */
   if (line[0] == '[')
     return NULL;
+  /* FIXME: No support for domain= */
+  if (strstr (line, "domain="))
+    return NULL;
 
   /* Skip garbage */
   if (line[0] == ' ' || !line[0])
-- 
1.8.5.2