From 3c6244b685f44b3fa0bc48c2c57a4e6bcf97a81f Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Wed, 5 Aug 2020 12:48:35 +0200
Subject: [PATCH] tools/url-pattern-translator.pl: Detect a couple of pattern
 prefixes case-insensitively

Sponsored by: Robert Klemme
---
 tools/url-pattern-translator.pl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/url-pattern-translator.pl b/tools/url-pattern-translator.pl
index b9e3766c..5477a876 100755
--- a/tools/url-pattern-translator.pl
+++ b/tools/url-pattern-translator.pl
@@ -91,11 +91,11 @@ sub looks_interesting($) {
 
         $type_to_skip = "whitespace";
 
-    } elsif (m@^\s*CLIENT-TAG:@) {
+    } elsif (m@^\s*CLIENT-TAG:@i) {
 
         $type_to_skip = "client tag patttern";
 
-    } elsif (m@^\s*TAG:@) {
+    } elsif (m@^\s*TAG:@i) {
 
         $type_to_skip = "tag patttern";
 
@@ -107,7 +107,7 @@ sub looks_interesting($) {
 
         $type_to_skip = "predefined settings";
 
-    } elsif (m@^\s*PCRE-HOST-PATTERN:@) {
+    } elsif (m@^\s*PCRE-HOST-PATTERN:@i) {
 
         $type_to_skip = "already converted pcre host patttern";
 
-- 
2.49.0