Fix detection of the Privoxy version now that https:// is used for the website
authorFabian Keil <fk@fabiankeil.de>
Sun, 8 May 2016 10:45:18 +0000 (10:45 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sun, 8 May 2016 10:45:18 +0000 (10:45 +0000)
tools/privoxy-regression-test.pl

index a083ff0..9a67319 100755 (executable)
@@ -7,7 +7,7 @@
 # A regression test "framework" for Privoxy. For documentation see:
 # perldoc privoxy-regression-test.pl
 #
 # A regression test "framework" for Privoxy. For documentation see:
 # perldoc privoxy-regression-test.pl
 #
-# $Id: privoxy-regression-test.pl,v 1.92 2013/03/20 11:30:45 fabiankeil Exp $
+# $Id: privoxy-regression-test.pl,v 1.93 2013/12/24 13:36:58 fabiankeil Exp $
 #
 # Wish list:
 #
 #
 # Wish list:
 #
@@ -341,7 +341,7 @@ sub load_regression_tests_through_privoxy () {
             $privoxy_features{$feature} = $1 if defined $feature;
             $feature = undef;
 
             $privoxy_features{$feature} = $1 if defined $feature;
             $feature = undef;
 
-        } elsif (m@This is <a href="http://www.privoxy.org/">Privoxy</a> (\d+\.\d+\.\d+) on@) {
+        } elsif (m@This is <a href="https?://www.privoxy.org/">Privoxy</a> (\d+\.\d+\.\d+) on@) {
             $privoxy_version = $1;
         }
     }
             $privoxy_version = $1;
         }
     }