diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-11-01 00:13:09 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-11-01 00:13:09 +0800 |
commit | 082a2dde354eb624b6fee33767e68e5b05dcde25 (patch) | |
tree | dc6814959f974bfb516c392013d67f417f0b385a /keyimport.c | |
parent | 814ab77538b8023f3ede270fcd14da7368913554 (diff) |
Fix specifying a keysize for key generation, fix key name arguments
--HG--
branch : ecc
Diffstat (limited to 'keyimport.c')
-rw-r--r-- | keyimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyimport.c b/keyimport.c index 05bf800..96e4b51 100644 --- a/keyimport.c +++ b/keyimport.c @@ -774,7 +774,7 @@ static sign_key *openssh_read(const char *filename, char *passphrase) goto error; } - *signkey_ecc_key_ptr(retkey, retkey->type) = ecc; + *signkey_key_ptr(retkey, retkey->type) = ecc; } #endif // DROPBEAR_ECDSA |