diff options
author | Jim Meyering <meyering@redhat.com> | 2010-03-26 16:46:23 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-03-26 16:49:48 +0100 |
commit | 8915368ee3f9580155a8a3119a27e9615368a846 (patch) | |
tree | 9743db4fbc7aaecfd9f86488a42491d629253d6e /tests/envvar-check | |
parent | b4f9559537144a7158064ca67b7a4305f1c459df (diff) | |
download | coreutils-8915368ee3f9580155a8a3119a27e9615368a846.tar.xz |
tests: fix typos in envvar-check script
* tests/envvar-check: Fix variable name typos.
Probably harmless, since no selected shell would fail to unset.
Diffstat (limited to 'tests/envvar-check')
-rw-r--r-- | tests/envvar-check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/envvar-check b/tests/envvar-check index e31b94164..1dee9afb1 100644 --- a/tests/envvar-check +++ b/tests/envvar-check @@ -22,7 +22,7 @@ else as_unset=false fi -envvar_check_failed=0 +envvar_check_fail=0 vars=' _POSIX2_VERSION BLOCKSIZE @@ -49,7 +49,7 @@ do if eval test \"\${$var+set}\" = set; then echo "$0: the $var environment variable is set --" \ ' unset it and rerun this test' >&2 - envvar_check_failed=1 + envvar_check_fail=1 fi done |