From f27e1d9b7ee2cbd16bbdadf35872ef39f0527aac Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 19 Apr 2013 19:16:09 +0000 Subject: - Made all numeric defines use the actual string instead of the numeric value which allows to use gcc's printf format attribute - Remove current message locale implementation git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1832 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_lusers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/m_lusers.c') diff --git a/modules/m_lusers.c b/modules/m_lusers.c index c7c41c5..2b9ed22 100644 --- a/modules/m_lusers.c +++ b/modules/m_lusers.c @@ -53,7 +53,7 @@ m_lusers(struct Client *client_p, struct Client *source_p, if ((last_used + ConfigFileEntry.pace_wait_simple) > CurrentTime) { /* safe enough to give this on a local connect only */ - sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, source_p->name); + sendto_one(source_p, RPL_LOAD2HI, me.name, source_p->name); return; } -- cgit