From: Jilles Tjoelker Date: Sun, 9 Nov 2008 00:05:39 +0000 (+0100) Subject: Should use rb_strlcpy instead of strlcpy... X-Git-Url: https://jfr.im/git/solanum.git/commitdiff_plain/62656efdd6b6ee66002c217dda33a92d510cbf32 Should use rb_strlcpy instead of strlcpy... --- diff --git a/modules/m_who.c b/modules/m_who.c index b5357e78..f05beca5 100644 --- a/modules/m_who.c +++ b/modules/m_who.c @@ -138,7 +138,7 @@ m_who(struct Client *client_p, struct Client *source_p, int parc, const char *pa fmt.querytype = "0"; } - strlcpy(maskcopy, parv[1], sizeof maskcopy); + rb_strlcpy(maskcopy, parv[1], sizeof maskcopy); mask = maskcopy; collapse(mask);