1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

scan through the PATH as well, to find stunnel

This commit is contained in:
Daniel Stenberg 2003-02-03 22:15:33 +00:00
parent 21c16f923c
commit 10026bb62e

View File

@ -1,6 +1,6 @@
sub checkstunnel {
my @paths=("/usr/sbin", "/usr/local/sbin", "/sbin", "/usr/bin",
"/usr/local/bin");
"/usr/local/bin", split(":", $ENV{'PATH'}));
for(@paths) {
if( -x "$_/stunnel") {
return "$_/stunnel";