make m_signon build.

This commit is contained in:
William Pitcock 2008-04-01 16:29:32 -05:00
parent d665092128
commit 7689475b4f
1 changed files with 5 additions and 1 deletions

View File

@ -257,8 +257,12 @@ me_svslogin(struct Client *client_p, struct Client *source_p,
}
else
{
char note[NICKLEN + 10];
send_signon(NULL, target_p, nick, user, host, CurrentTime, login);
rb_note(target_p->localClient->F->fd, "Nick: %s", target_p->name);
rb_snprintf(note, NICKLEN + 10, "Nick: %s", target_p->name);
rb_note(target_p->localClient->F, note);
}
return 0;