From 029f98657907a18d64b33d08b6f3577d2561a4c3 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 12 May 2013 16:56:15 +0000 Subject: - m_topic.c: fixed compile warning git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2020 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_topic.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'modules') diff --git a/modules/m_topic.c b/modules/m_topic.c index 75b3294..5d088ef 100644 --- a/modules/m_topic.c +++ b/modules/m_topic.c @@ -143,6 +143,11 @@ ms_topic(struct Client *client_p, struct Client *source_p, from = me.id; to = source_p->id; } + else + { + from = me.name; + to = source_p->name; + } if (EmptyString(parv[1])) { -- cgit