diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-03-01 02:49:05 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-03-01 02:49:05 +0100 |
commit | c614c78c53a38d2a603fb1b01fb419b965b24e50 (patch) | |
tree | 52ec556e473083f629d47d43f9515f9c61b111fd /regress/cert-hostkey.sh | |
parent | - (tim) [ssh-pkcs11-helper.c] Move declarations before calling functions (diff) | |
download | openssh-c614c78c53a38d2a603fb1b01fb419b965b24e50.tar.xz openssh-c614c78c53a38d2a603fb1b01fb419b965b24e50.zip |
- (dtucker) [regress/{cert-hostkey,cfgmatch,cipher-speed}.sh} Replace
"echo -n" with "echon" for portability.
Diffstat (limited to 'regress/cert-hostkey.sh')
-rw-r--r-- | regress/cert-hostkey.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh index 14cd2230b..9539a927f 100644 --- a/regress/cert-hostkey.sh +++ b/regress/cert-hostkey.sh @@ -12,8 +12,8 @@ HOSTS='localhost-with-alias,127.0.0.1,::1' ${SSHKEYGEN} -q -N '' -t rsa -f $OBJ/host_ca_key ||\ fail "ssh-keygen of host_ca_key failed" ( - echo -n '@cert-authority ' - echo -n "$HOSTS " + echon '@cert-authority ' + echon "$HOSTS " cat $OBJ/host_ca_key.pub ) > $OBJ/known_hosts-cert @@ -102,7 +102,7 @@ for ktype in rsa dsa ; do -n $HOSTS $OBJ/cert_host_key_${ktype} || fail "couldn't sign cert_host_key_${ktype}" ( - echo -n "$HOSTS " + echon "$HOSTS " cat $OBJ/cert_host_key_${ktype}.pub ) > $OBJ/known_hosts-cert ( |