strlcat -> rb_strlcat

This commit is contained in:
Valery Yatsko 2008-04-20 08:44:04 +04:00
parent f427c8b00d
commit 1f9de103c3
14 changed files with 29 additions and 95 deletions

View file

@ -205,7 +205,7 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
if(*jbuf)
(void) strcat(jbuf, ",");
(void) strlcat(jbuf, name, sizeof(jbuf));
(void) rb_strlcat(jbuf, name, sizeof(jbuf));
}
if(parc > 2)