From a345b429a6a1815a02eff0821a0f736e765bc9a2 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 30 Jun 2008 08:07:35 +0000 Subject: shell portability: use "=" instead of "==" in test(1) expressions, double-quote string with backslash escaped / --- regress/usr.bin/ssh/key-options.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'regress/usr.bin/ssh') diff --git a/regress/usr.bin/ssh/key-options.sh b/regress/usr.bin/ssh/key-options.sh index b4dd470573e..f98d78b3077 100644 --- a/regress/usr.bin/ssh/key-options.sh +++ b/regress/usr.bin/ssh/key-options.sh @@ -1,4 +1,4 @@ -# $OpenBSD: key-options.sh,v 1.1 2008/06/10 23:13:43 dtucker Exp $ +# $OpenBSD: key-options.sh,v 1.2 2008/06/30 08:07:34 djm Exp $ # Placed in the Public Domain. tid="key options" @@ -53,11 +53,11 @@ for p in 1 2; do fail "key option proto $p failed without restriction" fi - sed 's/.*/from="'$f'" &/' $origkeys >$authkeys + sed 's/.*/from="'"$f"'" &/' $origkeys >$authkeys from=`head -1 $authkeys | cut -f1 -d ' '` verbose "key option proto $p $from" r=`${SSH} -$p -q -F $OBJ/ssh_proxy somehost 'echo true'` - if [ "$r" == "true" ]; then + if [ "$r" = "true" ]; then fail "key option proto $p $from not restricted" fi -- cgit v1.2.3