Skip to content

Commit aff9493

Browse files
committed
upstream: unbreak test: cannot access shell positional parameters
past $9 without wrapping the position in braces (i.e. need ${10}, etc.) OpenBSD-Regress-ID: 3750ec98d5d409ce6a93406fedde6f220d2ea2ac
1 parent 0293c19 commit aff9493

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

regress/krl.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $OpenBSD: krl.sh,v 1.11 2019/12/16 02:39:05 djm Exp $
1+
# $OpenBSD: krl.sh,v 1.12 2023/01/16 04:11:29 djm Exp $
22
# Placed in the Public Domain.
33

44
tid="key revocation lists"
@@ -175,8 +175,8 @@ test_rev() {
175175
KEYID_RESULT=$7
176176
CERTS_RESULT=$8
177177
CA_RESULT=$9
178-
SERIAL_WRESULT=$10
179-
KEYID_WRESULT=$11
178+
SERIAL_WRESULT=${10}
179+
KEYID_WRESULT=${11}
180180
verbose "$tid: checking revocations for $TAG"
181181
for f in $FILES ; do
182182
check_krl $f $OBJ/krl-empty no "$TAG"

0 commit comments

Comments
 (0)