From 863efb0e6b0a12909dc0c417264b321f522824dc Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 9 Nov 2008 01:05:39 +0100 Subject: [PATCH] Should use rb_strlcpy instead of strlcpy... --- modules/m_who.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_who.c b/modules/m_who.c index b5357e7..f05beca 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);