From: Daniel Stenberg Date: Thu, 14 Jun 2007 21:16:08 +0000 (+0000) Subject: Tom Regner added /usr/lib/misc to the path to scan for sftp to make the X-Git-Tag: curl-7_16_3~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b0aa11fde7da951e3a0a4746fbc2601b02d2888c;p=thirdparty%2Fcurl.git Tom Regner added /usr/lib/misc to the path to scan for sftp to make the sftp tests run fine on gentoo --- diff --git a/tests/sshserver.pl b/tests/sshserver.pl index a2413bb075..d6802ea382 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -25,7 +25,7 @@ if ($^O eq 'MSWin32' || $^O eq 'cygwin' || $^O eq 'msys' || $^O eq 'dos' || $^O } # Where to look for sftp-server -my @sftppath=qw(/usr/lib/openssh /usr/libexec/openssh /usr/libexec /usr/local/libexec /opt/local/libexec /usr/lib/ssh /usr/libexec/ssh /usr/sbin /usr/lib /usr/lib/ssh/openssh /usr/lib64/ssh /usr/lib64/misc); +my @sftppath=qw(/usr/lib/openssh /usr/libexec/openssh /usr/libexec /usr/local/libexec /opt/local/libexec /usr/lib/ssh /usr/libexec/ssh /usr/sbin /usr/lib /usr/lib/ssh/openssh /usr/lib64/ssh /usr/lib64/misc /usr/lib/misc); my $username = $ENV{USER};