From 0632a45062f79e284a8f2e76722514acc0767332 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 4 Jul 2013 21:03:43 +0000 Subject: - m_trace.c:report_this_status(): XXX solved. x->localClient->firsttime can't ever be zero git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2360 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_trace.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/m_trace.c b/modules/m_trace.c index 4b86162..17657b6 100644 --- a/modules/m_trace.c +++ b/modules/m_trace.c @@ -336,8 +336,7 @@ report_this_status(struct Client *source_p, struct Client *target_p, int dow) /* added time -Taner */ sendto_one(source_p, form_str(RPL_TRACEUNKNOWN), from, to, class_name, name, target_p->sockhost, - target_p->localClient->firsttime ? /* TBD: can't be 0 */ - CurrentTime - target_p->localClient->firsttime : -1); + CurrentTime - target_p->localClient->firsttime); break; case STAT_CLIENT: /* -- cgit