diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-10-07 10:30:06 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-10-07 10:30:06 +1100 |
commit | 7023d161d86211fa6a4c7dfacdad37a53f468512 (patch) | |
tree | a1fe57e9a3785627fe799141e97d1fe129d424e6 /regress/addrmatch.sh | |
parent | 695ed397a5216189629aa717d03d72ad21cdee1a (diff) |
- djm@cvs.openbsd.org 2008/12/07 22:17:48
[regress/addrmatch.sh]
match string "passwordauthentication" only at start of line, not anywhere
in sshd -T output
Diffstat (limited to 'regress/addrmatch.sh')
-rw-r--r-- | regress/addrmatch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/addrmatch.sh b/regress/addrmatch.sh index a258f7bb4..cbff82e5c 100644 --- a/regress/addrmatch.sh +++ b/regress/addrmatch.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: addrmatch.sh,v 1.1 2008/06/10 05:23:32 dtucker Exp $ | 1 | # $OpenBSD: addrmatch.sh,v 1.2 2008/12/07 22:17:48 djm Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="address match" | 4 | tid="address match" |
@@ -12,7 +12,7 @@ run_trial() | |||
12 | verbose "test $descr for $user $addr $host" | 12 | verbose "test $descr for $user $addr $host" |
13 | result=`${SSHD} -f $OBJ/sshd_proxy -T \ | 13 | result=`${SSHD} -f $OBJ/sshd_proxy -T \ |
14 | -C user=${user},addr=${addr},host=${host} | \ | 14 | -C user=${user},addr=${addr},host=${host} | \ |
15 | awk '/passwordauthentication/ {print $2}'` | 15 | awk '/^passwordauthentication/ {print $2}'` |
16 | if [ "$result" != "$expected" ]; then | 16 | if [ "$result" != "$expected" ]; then |
17 | fail "failed for $user $addr $host: expected $expected, got $result" | 17 | fail "failed for $user $addr $host: expected $expected, got $result" |
18 | fi | 18 | fi |