summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:33:31 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:33:31 +1100
commit4a8ed543612c99700788d87fe18081d5df4b37c6 (patch)
tree3a102ce09b19c658de9bdb28e0e449261d15db9e /ssh-agent.c
parent9c3f9505d9401a7af93098a59f3979e4608cde50 (diff)
- stevesk@cvs.openbsd.org 2002/01/18 18:14:17
[authfd.c bufaux.c buffer.c cipher.c packet.c ssh-agent.c ssh-keygen.c] unneeded cast cleanup; ok markus@
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 84cff1282..5264c23a8 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.78 2002/01/13 17:27:07 provos Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -37,7 +37,7 @@
37 37
38#include "includes.h" 38#include "includes.h"
39#include <sys/queue.h> 39#include <sys/queue.h>
40RCSID("$OpenBSD: ssh-agent.c,v 1.78 2002/01/13 17:27:07 provos Exp $"); 40RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $");
41 41
42#include <openssl/evp.h> 42#include <openssl/evp.h>
43#include <openssl/md5.h> 43#include <openssl/md5.h>
@@ -205,7 +205,7 @@ process_authentication_challenge1(SocketEntry *e)
205 /* Only protocol 1.1 is supported */ 205 /* Only protocol 1.1 is supported */
206 if (buffer_len(&e->input) == 0) 206 if (buffer_len(&e->input) == 0)
207 goto failure; 207 goto failure;
208 buffer_get(&e->input, (char *) session_id, 16); 208 buffer_get(&e->input, session_id, 16);
209 response_type = buffer_get_int(&e->input); 209 response_type = buffer_get_int(&e->input);
210 if (response_type != 1) 210 if (response_type != 1)
211 goto failure; 211 goto failure;