+Sun Mar 11 15:19:10 CET 2007 Jochen Eisinger <coffee@silcnet.org>
+
+ * Only wait for a nick on connecting, when it differs
+ (not counting case) from the username. Affected file
+ is apps/irssi/src/silc/core/silc-servers.c
+
Sun Mar 11 13:50:53 CET 2007 Jochen Eisinger <coffee@silcnet.org>
* Use time settings for lag settings. Affected file is
/* Enable queueing until we have our requested nick */
if (((opt_nickname &&
- strcmp(opt_nickname, conn->local_entry->nickname)) ||
+ silc_utf8_strcasecmp(opt_nickname, conn->local_entry->nickname)) ||
(settings_get_str("nick") &&
- strcmp(settings_get_str("nick"), conn->local_entry->nickname))) &&
- !strcmp(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 */