summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfd.c b/authfd.c
index d9427d377..6c40afc65 100644
--- a/authfd.c
+++ b/authfd.c
@@ -17,7 +17,7 @@
17 */ 17 */
18 18
19#include "includes.h" 19#include "includes.h"
20RCSID("$OpenBSD: authfd.c,v 1.25 2000/08/19 21:34:42 markus Exp $"); 20RCSID("$OpenBSD: authfd.c,v 1.26 2000/08/31 22:09:34 markus Exp $");
21 21
22#include "ssh.h" 22#include "ssh.h"
23#include "rsa.h" 23#include "rsa.h"
@@ -359,6 +359,7 @@ ssh_agent_sign(AuthenticationConnection *auth,
359 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST); 359 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
360 buffer_put_string(&msg, blob, blen); 360 buffer_put_string(&msg, blob, blen);
361 buffer_put_string(&msg, data, datalen); 361 buffer_put_string(&msg, data, datalen);
362 buffer_put_int(&msg, 0); /* flags, unused */
362 xfree(blob); 363 xfree(blob);
363 364
364 if (ssh_request_reply(auth, &msg, &msg) == 0) { 365 if (ssh_request_reply(auth, &msg, &msg) == 0) {