agent: A little clean up.

* agent/findkey.c (agent_is_eddsa_key): Remove dead case.

--

There is no possibility the call of key_parms_from_sexp returns
"eddsa".

Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2020-06-19 13:38:19 +09:00
parent d1e1c622d5
commit abc6a3100a
1 changed files with 0 additions and 2 deletions

View File

@ -1308,8 +1308,6 @@ agent_is_eddsa_key (gcry_sexp_t s_key)
if (!strcmp (algoname, "ecc") && is_eddsa (list))
result = 1;
else if (!strcmp (algoname, "eddsa")) /* backward compatibility. */
result = 1;
else
result = 0;