From 91b015d203dbc7a9360edea4ce2e508ae05d6426 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Tue, 8 May 2001 05:47:06 +0000 Subject: [PATCH] updates --- CHANGES | 4 ++++ apps/silc/client_ops.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index d8b576b8..b3316217 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +Tue May 8 09:04:03 EEST 2001 Pekka Riikonen + + * Fixed a va_arg in silc/client_ops.c. + Sun May 6 13:59:48 EEST 2001 Pekka Riikonen * Added new SilcIDIP structure into the lib/silccore/id.h and diff --git a/apps/silc/client_ops.c b/apps/silc/client_ops.c index 23c0b720..d715e5d9 100644 --- a/apps/silc/client_ops.c +++ b/apps/silc/client_ops.c @@ -901,7 +901,7 @@ void silc_command_reply(SilcClient client, SilcClientConnection conn, unsigned char *pk; uint32 pk_len; - id_type = va_arg(vp, SilcIdType); + id_type = va_arg(vp, uint32); entry = va_arg(vp, void *); public_key = va_arg(vp, SilcPublicKey); -- 2.43.0