[regress/envpass.sh]
     Add quoting for test -z; ok markus@
This commit is contained in:
Darren Tucker 2004-06-23 09:23:58 +10:00
parent a8c73d3b8c
commit 6eabe64304
2 changed files with 8 additions and 4 deletions

View File

@ -2,6 +2,10 @@
- (dtucker) [auth1.c] Ensure do_pam_account is called for Protocol 1
connections with empty passwords. Patch from davidwu at nbttech.com,
ok djm@
- (dtucker) OpenBSD CVS Sync
- dtucker@cvs.openbsd.org 2004/06/22 22:42:02
[regress/envpass.sh]
Add quoting for test -z; ok markus@
20040622
- (bal) [auth-passwd.c auth1.c] Clean up unused variables.
@ -1374,4 +1378,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3433 2004/06/22 23:17:54 dtucker Exp $
$Id: ChangeLog,v 1.3434 2004/06/22 23:23:58 dtucker Exp $

View File

@ -1,4 +1,4 @@
# $OpenBSD: envpass.sh,v 1.2 2004/06/22 03:12:13 markus Exp $
# $OpenBSD: envpass.sh,v 1.3 2004/06/22 22:42:02 dtucker Exp $
# Placed in the Public Domain.
tid="environment passing"
@ -9,7 +9,7 @@ trace "pass env, don't accept"
verbose "test $tid: pass env, don't accept"
_TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy otherhost \
sh << 'EOF'
test -z $_TEST_ENV
test -z "$_TEST_ENV"
EOF
r=$?
if [ $r -ne 0 ]; then
@ -20,7 +20,7 @@ trace "don't pass env, accept"
verbose "test $tid: don't pass env, accept"
${SSH} -F $OBJ/ssh_proxy otherhost \
sh << 'EOF'
test -z $_XXX_TEST_A && test -z $_XXX_TEST_B
test -z "$_XXX_TEST_A" && test -z "$_XXX_TEST_B"
EOF
r=$?
if [ $r -ne 0 ]; then