+Tue Apr 24 17:55:24 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
+
+ * Fixed command queue enabling after connecting to server.
+ The comparisons was from after changing to silc_utf8_strcasecmp.
+ Affected file is apps/irssi/src/silc/core/silc-servers.c.
+
+Mon Apr 23 17:20:01 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
+
+ * Do not call TCP network listener callback with any error
+ status, as documented. Affected file is
+ lib/silcutil/unix/silcunixnet.c.
+
Sun Apr 22 21:13:28 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
* Preliminary SILC Server 1.1 changes committed to apps/silcd/.
* Added silc_net_get_error_string, silc_net_listener_get_ip and
silc_net_listener_get_hostname to lib/silcutil/silcnet.[ch].
- *
-
Tue Apr 10 15:55:42 CEST 2007 Jochen Eisinger <coffee@silcnet.org>
* Add option --enable-silc-plugin. Affected files are
/* Enable queueing until we have our requested nick */
if (((opt_nickname &&
- silc_utf8_strcasecmp(opt_nickname, conn->local_entry->nickname)) ||
+ !silc_utf8_strcasecmp(opt_nickname,
+ conn->local_entry->nickname)) ||
(settings_get_str("nick") &&
- silc_utf8_strcasecmp(settings_get_str("nick"), conn->local_entry->nickname))) &&
- !silc_utf8_strcasecmp(conn->local_entry->nickname, conn->local_entry->username))
+ !silc_utf8_strcasecmp(settings_get_str("nick"),
+ conn->local_entry->nickname))) &&
+ silc_utf8_strcasecmp(conn->local_entry->nickname,
+ conn->local_entry->username))
silc_queue_enable(conn);
/* Put default attributes */