Commit 757a7d08 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

removed, functionality added to runtests.pl

parent 25613503
Loading
Loading
Loading
Loading

tests/stunnel.pm

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
sub checkstunnel {
    my @paths=("/usr/sbin", "/usr/local/sbin", "/sbin", "/usr/bin",
               "/usr/local/bin", split(":", $ENV{'PATH'}));
    for(@paths) {
        if( -x "$_/stunnel") {
            return "$_/stunnel";
        }
    }
}

1;