implemented KICK command
[silc.git] / apps / silc / local_command.c
index 7a9316a5d4468d399f8375f06e0afc434b949d4b..58a76660ce2ce505aa1068140c5e6f19f591f818 100644 (file)
 /*
  * $Id$
  * $Log$
+ * Revision 1.6  2001/02/24 15:50:23  priikone
+ *     implemented KICK command
+ *
+ * Revision 1.5  2001/02/19 13:47:30  priikone
+ *     updates.
+ *
  * Revision 1.4  2001/02/16 00:33:23  priikone
  *     updates.
  *
@@ -142,11 +148,12 @@ SILC_CLIENT_LCMD_FUNC(msg)
   }
 
   /* Find client entry */
-  client_entry = silc_idlist_get_client(client, conn, nickname, server, num);
+  client_entry = silc_idlist_get_client(client, conn, nickname, server, num,
+                                       TRUE);
   if (!client_entry) {
     /* Client entry not found, it was requested thus mark this to be
        pending command. */
-    silc_client_command_pending(conn, SILC_COMMAND_IDENTIFY, 0,
+    silc_client_command_pending(conn, SILC_COMMAND_IDENTIFY, 0, NULL,
                                silc_client_local_command_msg, context);
     return;
   }