summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 61e79c5fc..044710a43 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.62 2001/07/04 23:13:10 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.63 2001/07/04 23:39:07 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -36,7 +36,7 @@
36 */ 36 */
37 37
38#include "includes.h" 38#include "includes.h"
39RCSID("$OpenBSD: ssh-agent.c,v 1.62 2001/07/04 23:13:10 markus Exp $"); 39RCSID("$OpenBSD: ssh-agent.c,v 1.63 2001/07/04 23:39:07 markus Exp $");
40 40
41#include <openssl/evp.h> 41#include <openssl/evp.h>
42#include <openssl/md5.h> 42#include <openssl/md5.h>
@@ -515,6 +515,7 @@ process_remove_smartcard_key(SocketEntry *e)
515 if ((k = sc_get_key(sc_reader_num)) == NULL) { 515 if ((k = sc_get_key(sc_reader_num)) == NULL) {
516 error("sc_get_pubkey failed"); 516 error("sc_get_pubkey failed");
517 } else { 517 } else {
518 k->type = KEY_RSA1;
518 private = lookup_private_key(k, &idx, 1); 519 private = lookup_private_key(k, &idx, 1);
519 if (private != NULL) { 520 if (private != NULL) {
520 Idtab *tab = idtab_lookup(1); 521 Idtab *tab = idtab_lookup(1);
@@ -525,6 +526,7 @@ process_remove_smartcard_key(SocketEntry *e)
525 tab->nentries--; 526 tab->nentries--;
526 success = 1; 527 success = 1;
527 } 528 }
529 k->type = KEY_RSA;
528 private = lookup_private_key(k, &idx, 2); 530 private = lookup_private_key(k, &idx, 2);
529 if (private != NULL) { 531 if (private != NULL) {
530 Idtab *tab = idtab_lookup(2); 532 Idtab *tab = idtab_lookup(2);
@@ -536,7 +538,6 @@ process_remove_smartcard_key(SocketEntry *e)
536 success = 1; 538 success = 1;
537 } 539 }
538 key_free(k); 540 key_free(k);
539 sc_close();
540 } 541 }
541 542
542 buffer_put_int(&e->output, 1); 543 buffer_put_int(&e->output, 1);