if ID was present in key exchange packet. Affected file
is lib/silcske/silcske.[ch].
+ * Handle also zero timeouts in the scheduler notify callback
+ to avoid problems with SILC Plugin. Affected file is
+ apps/irssi/src/silc/core/silc-core.c.
+
Thu Jun 28 19:19:13 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
* SILC Client 1.1.1.
/* Add timeout */
guint t;
- /* Zero timeouts are delievered always immediately, as per
- SilcSchedule API documentation, no need to add them to glib. */
- if (!seconds && !useconds)
- return;
-
t = (seconds * 1000) + (useconds / 1000);
SILC_LOG_DEBUG(("interval %d msec", t));
g_timeout_add(t, my_silc_scheduler, NULL);