From 7807059b5025de7806fd58cf9c3667b51fe6c1d2 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Fri, 16 Feb 2001 12:13:54 +0000 Subject: [PATCH] update --- CHANGES | 5 +++++ apps/silcd/command.c | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index e50f864b..313cda5e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Fri Feb 16 14:14:00 EET 2001 Pekka Riikonen + + * Call silc_server_command_identify_check always when processing + the IDENTIFY command in silcd/command.c + Thu Feb 15 20:07:37 EET 2001 Pekka Riikonen * Added new packet type SILC_PACKET_HEARTBEAT that is used to diff --git a/apps/silcd/command.c b/apps/silcd/command.c index 6f341228..69101935 100644 --- a/apps/silcd/command.c +++ b/apps/silcd/command.c @@ -1044,8 +1044,7 @@ silc_server_command_identify_from_client(SilcServerCommandContext cmd) /* Check that all mandatory fields are present and request those data from the server who owns the client if necessary. */ - if (!cmd->pending && - !silc_server_command_identify_check(cmd, clients, clients_count)) { + if (!silc_server_command_identify_check(cmd, clients, clients_count)) { ret = -1; goto out; } @@ -1152,8 +1151,7 @@ silc_server_command_identify_from_server(SilcServerCommandContext cmd) /* Check that all mandatory fields are present and request those data from the server who owns the client if necessary. */ - if (!cmd->pending && - !silc_server_command_identify_check(cmd, clients, clients_count)) { + if (!silc_server_command_identify_check(cmd, clients, clients_count)) { ret = -1; goto out; } -- 2.43.0