From: Pekka Riikonen Date: Tue, 8 May 2001 05:47:06 +0000 (+0000) Subject: updates X-Git-Tag: SILC.0.2.4~10 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=91b015d203dbc7a9360edea4ce2e508ae05d6426 updates --- 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);