privoxy-regression-test.pl: Turn curl's globbing mode off so we can allow more charac...
authorFabian Keil <fk@fabiankeil.de>
Sun, 7 Jun 2020 08:06:20 +0000 (10:06 +0200)
committerFabian Keil <fk@fabiankeil.de>
Sun, 7 Jun 2020 09:27:12 +0000 (11:27 +0200)
tools/privoxy-regression-test.pl

index 231aa9b..292ee78 100755 (executable)
@@ -1452,6 +1452,8 @@ sub get_page_with_curl ($) {
     $curl_line .= " --user-agent '" . PRT_VERSION . "' ";
     # We aren't too patient
     $curl_line .= " --max-time '" . get_cli_option('max-time') . "' ";
     $curl_line .= " --user-agent '" . PRT_VERSION . "' ";
     # We aren't too patient
     $curl_line .= " --max-time '" . get_cli_option('max-time') . "' ";
+    # We don't want curl to treat "[]", "{}" etc. special
+    $curl_line .= " --globoff ";
 
     $curl_line .= $parameters;
     # XXX: still necessary?
 
     $curl_line .= $parameters;
     # XXX: still necessary?