make m_signon build.
This commit is contained in:
parent
d665092128
commit
7689475b4f
|
@ -257,8 +257,12 @@ me_svslogin(struct Client *client_p, struct Client *source_p,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
char note[NICKLEN + 10];
|
||||||
|
|
||||||
send_signon(NULL, target_p, nick, user, host, CurrentTime, login);
|
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;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue