From: Pekka Riikonen Date: Sat, 29 Jun 2002 22:25:12 +0000 (+0000) Subject: Go through whole list of pending commands when deleting by X-Git-Tag: silc.server.0.9.4~2 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=7803d1d2f87b62b6480ab04628a5074fafa43593 Go through whole list of pending commands when deleting by ident. It's possible to have several there with same ident. --- diff --git a/apps/silcd/command.c b/apps/silcd/command.c index 65b41e2d..1b5a3f27 100644 --- a/apps/silcd/command.c +++ b/apps/silcd/command.c @@ -369,7 +369,6 @@ void silc_server_command_pending_del(SilcServer server, if (r->reply_cmd == reply_cmd && r->ident == ident) { silc_dlist_del(server->pending_commands, r); silc_free(r); - break; } } }