projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b2fa0e
)
privoxy-regression-test.pl: Turn curl's globbing mode off so we can allow more charac...
author
Fabian Keil
<fk@fabiankeil.de>
Sun, 7 Jun 2020 08:06:20 +0000
(10:06 +0200)
committer
Fabian Keil
<fk@fabiankeil.de>
Sun, 7 Jun 2020 09:27:12 +0000
(11:27 +0200)
tools/privoxy-regression-test.pl
patch
|
blob
|
history
diff --git
a/tools/privoxy-regression-test.pl
b/tools/privoxy-regression-test.pl
index
231aa9b
..
292ee78
100755
(executable)
--- a/
tools/privoxy-regression-test.pl
+++ b/
tools/privoxy-regression-test.pl
@@
-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') . "' ";
+ # We don't want curl to treat "[]", "{}" etc. special
+ $curl_line .= " --globoff ";
$curl_line .= $parameters;
# XXX: still necessary?