- djm@cvs.openbsd.org 2007/10/26 05:30:01
     [regress/sftp-glob.sh regress/test-exec.sh]
     remove "echo -E" crap that I added in last commit and use printf(1) for
     cases where we strictly require echo not to reprocess escape characters.
diff --git a/regress/sftp-glob.sh b/regress/sftp-glob.sh
index d5ebf9f..62004ef 100644
--- a/regress/sftp-glob.sh
+++ b/regress/sftp-glob.sh
@@ -1,4 +1,4 @@
-#	$OpenBSD: sftp-glob.sh,v 1.2 2007/10/24 03:32:35 djm Exp $
+#	$OpenBSD: sftp-glob.sh,v 1.3 2007/10/26 05:30:01 djm Exp $
 #	Placed in the Public Domain.
 
 tid="sftp glob"
@@ -9,7 +9,7 @@
 	expected=$3
 	unexpected=$4
 	verbose "$tid: $errtag"
-	$ECHOE "ls -l ${target}" | \
+	printf "ls -l %s" "${target}" | \
 		${SFTP} -b - -P ${SFTPSERVER} 2>/dev/null | \
 		grep -v "^sftp>" > ${RESULTS}
 	if [ $? -ne 0 ]; then