- dtucker@cvs.openbsd.org 2004/06/22 22:42:02
[regress/envpass.sh] Add quoting for test -z; ok markus@
This commit is contained in:
parent
a8c73d3b8c
commit
6eabe64304
|
@ -2,6 +2,10 @@
|
||||||
- (dtucker) [auth1.c] Ensure do_pam_account is called for Protocol 1
|
- (dtucker) [auth1.c] Ensure do_pam_account is called for Protocol 1
|
||||||
connections with empty passwords. Patch from davidwu at nbttech.com,
|
connections with empty passwords. Patch from davidwu at nbttech.com,
|
||||||
ok djm@
|
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
|
20040622
|
||||||
- (bal) [auth-passwd.c auth1.c] Clean up unused variables.
|
- (bal) [auth-passwd.c auth1.c] Clean up unused variables.
|
||||||
|
@ -1374,4 +1378,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.3433 2004/06/22 23:17:54 dtucker Exp $
|
$Id: ChangeLog,v 1.3434 2004/06/22 23:23:58 dtucker Exp $
|
||||||
|
|
|
@ -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.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
tid="environment passing"
|
tid="environment passing"
|
||||||
|
@ -9,7 +9,7 @@ trace "pass env, don't accept"
|
||||||
verbose "test $tid: pass env, don't accept"
|
verbose "test $tid: pass env, don't accept"
|
||||||
_TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy otherhost \
|
_TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy otherhost \
|
||||||
sh << 'EOF'
|
sh << 'EOF'
|
||||||
test -z $_TEST_ENV
|
test -z "$_TEST_ENV"
|
||||||
EOF
|
EOF
|
||||||
r=$?
|
r=$?
|
||||||
if [ $r -ne 0 ]; then
|
if [ $r -ne 0 ]; then
|
||||||
|
@ -20,7 +20,7 @@ trace "don't pass env, accept"
|
||||||
verbose "test $tid: don't pass env, accept"
|
verbose "test $tid: don't pass env, accept"
|
||||||
${SSH} -F $OBJ/ssh_proxy otherhost \
|
${SSH} -F $OBJ/ssh_proxy otherhost \
|
||||||
sh << 'EOF'
|
sh << 'EOF'
|
||||||
test -z $_XXX_TEST_A && test -z $_XXX_TEST_B
|
test -z "$_XXX_TEST_A" && test -z "$_XXX_TEST_B"
|
||||||
EOF
|
EOF
|
||||||
r=$?
|
r=$?
|
||||||
if [ $r -ne 0 ]; then
|
if [ $r -ne 0 ]; then
|
||||||
|
|
Loading…
Reference in New Issue