mirror of git://anongit.mindrot.org/openssh.git
upstream: use "lcd" to change directory before "lls" rather then "cd",
since the directory we're trying to list is local. Spotted by Corinna Vinschen OpenBSD-Regress-ID: 821feca4a4bebe491944e624c8f7f2990b891415
This commit is contained in:
parent
c8cfe258ce
commit
637e4dfea4
|
@ -1,4 +1,4 @@
|
||||||
# $OpenBSD: sftp-cmds.sh,v 1.19 2024/03/29 10:40:07 dtucker Exp $
|
# $OpenBSD: sftp-cmds.sh,v 1.20 2024/07/01 03:10:19 djm Exp $
|
||||||
# Placed in the Public Domain.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
# XXX - TODO:
|
# XXX - TODO:
|
||||||
|
@ -28,7 +28,7 @@ rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd ${COPY}.dd2
|
||||||
mkdir ${COPY}.dd
|
mkdir ${COPY}.dd
|
||||||
|
|
||||||
verbose "$tid: lls"
|
verbose "$tid: lls"
|
||||||
printf "cd ${OBJ}\nlls\n" | ${SFTP} -D ${SFTPSERVER} 2>&1 | \
|
printf "lcd ${OBJ}\nlls\n" | ${SFTP} -D ${SFTPSERVER} 2>&1 | \
|
||||||
grep copy.dd >/dev/null || fail "lls failed"
|
grep copy.dd >/dev/null || fail "lls failed"
|
||||||
|
|
||||||
verbose "$tid: lls w/path"
|
verbose "$tid: lls w/path"
|
||||||
|
|
Loading…
Reference in New Issue