summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
authormouring <mouring>2002-06-25 23:19:13 +0000
committermouring <mouring>2002-06-25 23:19:13 +0000
commitc8e8aeb5523c1941fe044875e9fb01840058b94a (patch)
treeaa4df1c191d586d417500f30419713c717d467bb /kex.c
parentc8ac9b2f4d3949fb1f193942d2aa54ccd2df1fbc (diff)
downloadopenssh-c8e8aeb5523c1941fe044875e9fb01840058b94a.tar.gz
- markus@cvs.openbsd.org 2002/06/24 14:55:38
[authfile.c kex.c ssh-agent.c] cat to (void) when output from buffer_get_X is ignored
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kex.c b/kex.c
index d079ab0e..bdbf3882 100644
--- a/kex.c
+++ b/kex.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: kex.c,v 1.50 2002/05/15 15:47:49 mouring Exp $");
+RCSID("$OpenBSD: kex.c,v 1.51 2002/06/24 14:55:38 markus Exp $");
#include <openssl/crypto.h>
@@ -202,8 +202,8 @@ kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
packet_get_char();
for (i = 0; i < PROPOSAL_MAX; i++)
xfree(packet_get_string(NULL));
- packet_get_char();
- packet_get_int();
+ (void) packet_get_char();
+ (void) packet_get_int();
packet_check_eom();
kex_kexinit_finish(kex);