update
authorPekka Riikonen <priikone@silcnet.org>
Fri, 16 Feb 2001 12:13:54 +0000 (12:13 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Fri, 16 Feb 2001 12:13:54 +0000 (12:13 +0000)
CHANGES
apps/silcd/command.c

diff --git a/CHANGES b/CHANGES
index e50f864b919e8653f790bf58bd211c3c525c9f71..313cda5ecccd384c2e8207fb898ef69f431e79da 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+Fri Feb 16 14:14:00 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
+
+       * 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 <priikone@poseidon.pspt.fi>
 
        * Added new packet type SILC_PACKET_HEARTBEAT that is used to
index 6f34122867a862bef6bb1a4e820339003e6dd4c4..69101935b110d60821be6735b8ef9984042e7e42 100644 (file)
@@ -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;
   }