ircsprintf -> rb_sprintf

This commit is contained in:
William Pitcock 2008-04-01 15:21:53 -05:00
parent 5b96d9a6b9
commit 7cdb0a09b9
26 changed files with 61 additions and 61 deletions

View file

@ -102,7 +102,7 @@ m_topic(struct Client *client_p, struct Client *source_p, int parc, const char *
if((chptr->mode.mode & MODE_TOPICLIMIT) == 0 || is_chanop(msptr))
{
char topic_info[USERHOST_REPLYLEN];
ircsprintf(topic_info, "%s!%s@%s",
rb_sprintf(topic_info, "%s!%s@%s",
source_p->name, source_p->username, source_p->host);
set_channel_topic(chptr, parv[2], topic_info, CurrentTime);