summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 56b81a78d..0bc4722b2 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.33 2000/08/19 21:34:43 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.34 2000/08/31 22:09:34 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: ssh-agent.c,v 1.33 2000/08/19 21:34:43 markus Exp $"); 15RCSID("$OpenBSD: ssh-agent.c,v 1.34 2000/08/31 22:09:34 markus Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "rsa.h" 18#include "rsa.h"
@@ -219,6 +219,7 @@ process_sign_request2(SocketEntry *e)
219 219
220 blob = buffer_get_string(&e->input, &blen); 220 blob = buffer_get_string(&e->input, &blen);
221 data = buffer_get_string(&e->input, &dlen); 221 data = buffer_get_string(&e->input, &dlen);
222 buffer_get_int(&e->input); /* flags, unused */
222 223
223 key = dsa_key_from_blob(blob, blen); 224 key = dsa_key_from_blob(blob, blen);
224 if (key != NULL) { 225 if (key != NULL) {