aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2017-12-29 18:09:06 +0000
committerAlan Somers <asomers@FreeBSD.org>2017-12-29 18:09:06 +0000
commit610b95a1736ff8604547c3e15eb09fa129378b08 (patch)
treeeb6a5d482d6024f62c97f083e5324dfd2b933186 /tests
parent8701bb8faeeef094292ba5f23b3b1a2546d9e449 (diff)
downloadsrc-610b95a1736ff8604547c3e15eb09fa129378b08.tar.gz
src-610b95a1736ff8604547c3e15eb09fa129378b08.zip
Fix a harmless typo from r310786
I copy/pasted a reference to an undefined shell variable. MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=327352
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/geom/class/eli/conf.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sys/geom/class/eli/conf.sh b/tests/sys/geom/class/eli/conf.sh
index 25eb4badb5b5..6e26145623ef 100644
--- a/tests/sys/geom/class/eli/conf.sh
+++ b/tests/sys/geom/class/eli/conf.sh
@@ -52,7 +52,7 @@ for_each_geli_config_nointegrity() {
for secsize in 512 1024 2048 4096 8192; do
bytes=`expr $secsize \* $sectors + 512`b
md=$(attach_md -t malloc -s $bytes)
- ${func} $cipher $aalgo $secsize
+ ${func} $cipher $secsize
geli detach ${md} 2>/dev/null
mdconfig -d -u ${md} 2>/dev/null
done