- (dtucker) [regress/test-exec.sh] Do not prepend an extra "/" to a fully-

qualified sshd pathname since some systems (eg Cygwin) may consider "/foo"
   and "//foo" to be different.  Spotted by vinschen at redhat.com.
This commit is contained in:
Darren Tucker 2005-08-23 23:32:05 +10:00
parent 93e7e8f345
commit 114572f7ee
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
20050823
- (dtucker) [regress/test-exec.sh] Do not prepend an extra "/" to a fully-
qualified sshd pathname since some systems (eg Cygwin) may consider "/foo"
and "//foo" to be different. Spotted by vinschen at redhat.com.
20050821 20050821
- (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for - (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for
LynxOS, patch from Olli Savia (ops at iki.fi). ok djm@ LynxOS, patch from Olli Savia (ops at iki.fi). ok djm@
@ -2945,4 +2950,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3875 2005/08/22 22:06:55 dtucker Exp $ $Id: ChangeLog,v 1.3876 2005/08/23 13:32:05 dtucker Exp $

View File

@ -96,9 +96,10 @@ if [ "x$TEST_SSH_SCP" != "x" ]; then
fi fi
# Path to sshd must be absolute for rexec # Path to sshd must be absolute for rexec
if [ ! -x /$SSHD ]; then case "$SSHD" in
SSHD=`which sshd` /*) ;;
fi *) SSHD=`which sshd` ;;
esac
if [ "x$TEST_SSH_LOGFILE" = "x" ]; then if [ "x$TEST_SSH_LOGFILE" = "x" ]; then
TEST_SSH_LOGFILE=/dev/null TEST_SSH_LOGFILE=/dev/null