From: Pekka Riikonen Date: Fri, 16 Feb 2001 12:13:54 +0000 (+0000) Subject: update X-Git-Tag: SILC.0.1~216 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=7807059b5025de7806fd58cf9c3667b51fe6c1d2;p=silc.git update --- 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; }