summaryrefslogtreecommitdiffstats
path: root/authfd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-29 17:49:55 +1100
committerDamien Miller <djm@mindrot.org>2013-12-29 17:49:55 +1100
commitf72cdde6e6fabc51d2a62f4e75b8b926d9d7ee89 (patch)
tree4b8400f76ea5d54252b307d261d78a459dff6a35 /authfd.c
parent29ace1cb68cc378a464c72c0fd67aa5f9acd6b5b (diff)
- djm@cvs.openbsd.org 2013/12/29 04:29:25
[authfd.c] allow deletion of ed25519 keys from the agent
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/authfd.c b/authfd.c
index 0971cee3..f9636903 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.90 2013/12/06 13:39:49 markus Exp $ */
+/* $OpenBSD: authfd.c,v 1.91 2013/12/29 04:29:25 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -557,9 +557,7 @@ ssh_remove_identity(AuthenticationConnection *auth, Key *key)
buffer_put_int(&msg, BN_num_bits(key->rsa->n));
buffer_put_bignum(&msg, key->rsa->e);
buffer_put_bignum(&msg, key->rsa->n);
- } else if (key_type_plain(key->type) == KEY_DSA ||
- key_type_plain(key->type) == KEY_RSA ||
- key_type_plain(key->type) == KEY_ECDSA) {
+ } else if (key->type != KEY_UNSPEC) {
key_to_blob(key, &blob, &blen);
buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
buffer_put_string(&msg, blob, blen);