Index: openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl,v diff -u -r1.1.2.23 -r1.1.2.24 --- openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl 24 Jul 2023 12:59:24 -0000 1.1.2.23 +++ openacs-4/packages/acs-tcl/tcl/test/http-client-procs.tcl 25 Feb 2024 17:25:16 -0000 1.1.2.24 @@ -58,7 +58,7 @@ if {$m eq "GET"} { set F_json [ad_opentmpfile tmpfile_app_json] if {$impl eq "curl"} { - puts $F_json [exec -ignorestderr curl $url -o -] + puts $F_json [exec -ignorestderr [::util::which curl] $url -o -] } else { ns_http run -method GET -spoolsize 0 -outputchan $F_json $url } @@ -107,7 +107,7 @@ set F_iso8859_2 [ad_opentmpfile tmpfile_iso8859_2] if {$impl eq "curl"} { - puts $F_iso8859_2 [exec -ignorestderr curl $url -o -] + puts $F_iso8859_2 [exec -ignorestderr [::util::which curl] $url -o -] } else { ns_http run -method GET -spoolsize 0 -outputchan $F_iso8859_2 $url }