summaryrefslogtreecommitdiff
path: root/modules/m_time.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-19 19:50:27 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-19 19:50:27 +0000
commit9d26c71414ef009975676e2037202ad99f9ca40c (patch)
tree87cf77340dec3ec70f30c6480c296dff534c5143 /modules/m_time.c
parentd014cc6c4d39b7ff37a5bfb4640c1af3a87df699 (diff)
- Revert to -r1831
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1834 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_time.c')
-rw-r--r--modules/m_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_time.c b/modules/m_time.c
index e240c9d..14705c6 100644
--- a/modules/m_time.c
+++ b/modules/m_time.c
@@ -53,7 +53,7 @@ m_time(struct Client *client_p, struct Client *source_p,
if (hunt_server(client_p, source_p, ":%s TIME :%s", 1, parc, parv) != HUNTED_ISME)
return;
- sendto_one(source_p, RPL_TIME, me.name,
+ sendto_one(source_p, form_str(RPL_TIME), me.name,
source_p->name, me.name, date(0));
}
@@ -67,7 +67,7 @@ mo_time(struct Client *client_p, struct Client *source_p,
int parc, char *parv[])
{
if (hunt_server(client_p, source_p, ":%s TIME :%s", 1, parc, parv) == HUNTED_ISME)
- sendto_one(source_p, RPL_TIME, me.name,
+ sendto_one(source_p, form_str(RPL_TIME), me.name,
source_p->name, me.name, date(0));
}