Index: openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/Attic/http-client-procs.tcl,v diff -u -N -r1.1.2.8 -r1.1.2.9 --- openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl 17 Oct 2019 14:13:39 -0000 1.1.2.8 +++ openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl 9 Jan 2020 14:08:01 -0000 1.1.2.9 @@ -47,10 +47,10 @@ # (which by RF4627 SHALL be some unicode version) if {$m eq "GET"} { set tmpfile_app_json [ad_tmpnam] - if {$impls eq "curl"} { + if {$impl eq "curl"} { exec -ignorestderr curl $url -o $tmpfile_app_json } else { - ns_http run -method GET -outputfile $tmpfile_app_json $url + ns_http run -method GET -spoolsize 0 -outputfile $tmpfile_app_json $url } } @@ -94,10 +94,10 @@ # encoding of the response to iso8859-2 if {$m eq "GET"} { set tmpfile_iso8859_2 [ad_tmpnam] - if {$impls eq "curl"} { + if {$impl eq "curl"} { exec -ignorestderr curl $url -o $tmpfile_iso8859_2 } else { - ns_http run -method GET -outputfile $tmpfile_iso8859_2 $url + ns_http run -method GET -spoolsize 0 -outputfile $tmpfile_iso8859_2 $url } }