diff options
author | Bodo Möller <bodo@openssl.org> | 2001-04-08 20:41:35 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2001-04-08 20:41:35 +0200 |
commit | 124d8cf701cb363415746d258fe30f42b989540d (patch) | |
tree | c80146820d744acb96084951f01a9b481f27815e /test/bctest | |
parent | binary algorithm for modular inversion (diff) | |
download | openssl-124d8cf701cb363415746d258fe30f42b989540d.tar.xz openssl-124d8cf701cb363415746d258fe30f42b989540d.zip |
code documentation
Diffstat (limited to 'test/bctest')
-rwxr-xr-x | test/bctest | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bctest b/test/bctest index 7dde781653..fbe74ed90b 100755 --- a/test/bctest +++ b/test/bctest @@ -12,13 +12,13 @@ IFS=: -try_path=true +try_without_dir=true # First we try "bc", then "$dir/bc" for each item in $PATH. for dir in dummy:$PATH; do - if [ "$try_path" = true ]; then + if [ "$try_without_dir" = true ]; then # first iteration bc=bc - try_path=false + try_without_dir=false else # second and later iterations bc="$dir/bc" |