It is however incomplete. Updated Toolkit documentation.
Affected files are lib/silcclient/command[_reply].[ch].
+ * Fixed IDENTIFY/WHOWAS command reply to send the username
+ correctly (uninitialized buffer). Affected file is
+ apps/silcd/server_query.c.
+
Mon Apr 25 14:25:24 EEST 2005 Pekka Riikonen <priikone@silcnet.org>
* Moved silcer/, silc/, silcd/ and irssi/ to apps/. This
3, nh, strlen(nh));
sent_reply = TRUE;
} else {
+ memset(uh, 0, sizeof(uh));
silc_strncat(uh, sizeof(uh), entry->username,
strlen(entry->username));
if (!strchr(entry->username, '@') && entry->connection) {
break;
case SILC_COMMAND_WHOWAS:
+ memset(uh, 0, sizeof(uh));
silc_strncat(uh, sizeof(uh), entry->username, strlen(entry->username));
if (!strchr(entry->username, '@'))
silc_strncat(uh, sizeof(uh), "@-private-", 10);