diff options
author | Tim Rice <tim@multitalents.net> | 2011-01-14 07:36:14 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2011-01-14 07:36:14 +0100 |
commit | c5c346b101fbd0399d11c88d9e204ac475596117 (patch) | |
tree | db48231a7c8bbcf4bd715b4fc6a84e003193b27a /regress/cert-hostkey.sh | |
parent | - (tim) [regress/cert-hostkey.sh] Typo. Missing $ on variable name. (diff) | |
download | openssh-c5c346b101fbd0399d11c88d9e204ac475596117.tar.xz openssh-c5c346b101fbd0399d11c88d9e204ac475596117.zip |
- (tim) [regress/cert-hostkey.sh] Add missing TEST_SSH_ECC guard around some
ecdsa bits.
Diffstat (limited to 'regress/cert-hostkey.sh')
-rw-r--r-- | regress/cert-hostkey.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh index 6ccf54cc0..3b147b9f7 100644 --- a/regress/cert-hostkey.sh +++ b/regress/cert-hostkey.sh @@ -72,9 +72,11 @@ done echon '@revoked ' echon "* " cat $OBJ/cert_host_key_rsa.pub - echon '@revoked ' - echon "* " - cat $OBJ/cert_host_key_ecdsa.pub + if test "x$TEST_SSH_ECC" = "xyes"; then + echon '@revoked ' + echon "* " + cat $OBJ/cert_host_key_ecdsa.pub + fi echon '@revoked ' echon "* " cat $OBJ/cert_host_key_dsa.pub |