diff options
Diffstat (limited to '')
-rw-r--r-- | checks/ChangeLog | 5 | ||||
-rwxr-xr-x | checks/conventional.test | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog index d5360ce3e..cc743512e 100644 --- a/checks/ChangeLog +++ b/checks/ChangeLog @@ -1,3 +1,8 @@ +2005-06-21 Werner Koch <[email protected]> + + * conventional.test (algos): Uhh ohh, cut+paste error and not + tested. + 2005-06-02 Werner Koch <[email protected]> * conventional.test: have_cipher_algo now requires uppercase diff --git a/checks/conventional.test b/checks/conventional.test index a1a80215d..2fd273028 100755 --- a/checks/conventional.test +++ b/checks/conventional.test @@ -12,11 +12,11 @@ done algos="3des" if have_cipher_algo "CAST5"; then - algos="$algos idea" + algos="$algos cast5" fi if have_cipher_algo "BLOWFISH"; then - algos="$algos idea" + algos="$algos blowfish" fi if have_cipher_algo "AES"; then |