From 679cd9efd8e369f7a727314bb2bab00da211b999 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 6 Jan 2012 21:54:39 +0100 Subject: pki: Fix build if you don't have ECC support. --- src/pki.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/pki.c') diff --git a/src/pki.c b/src/pki.c index 1ebc84a..ff8a5aa 100644 --- a/src/pki.c +++ b/src/pki.c @@ -730,7 +730,6 @@ int ssh_pki_import_pubkey_blob(const ssh_string key_blob, ssh_buffer buffer; ssh_string type_s = NULL; enum ssh_keytypes_e type; - int nid; int rc; if (key_blob == NULL || pkey == NULL) { @@ -761,13 +760,6 @@ int ssh_pki_import_pubkey_blob(const ssh_string key_blob, ssh_pki_log("Unknown key type found!"); goto fail; } - if (type == SSH_KEYTYPE_ECDSA) { - nid = pki_key_ecdsa_nid_from_name(ssh_string_get_char(type_s)); - if (nid == -1) { - ssh_pki_log("Unknown nid found!"); - goto fail; - } - } ssh_string_free(type_s); rc = pki_import_pubkey_buffer(buffer, type, pkey); -- cgit