From b64fc85e8e6248a2d7bea07c026c6f6708de0379 Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Thu, 14 Oct 2004 03:30:25 +0000 Subject: [PATCH] Fix use of uninitialized variable. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1244 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ircd/m_server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ircd/m_server.c b/ircd/m_server.c index d092fa4..7cd638e 100644 --- a/ircd/m_server.c +++ b/ircd/m_server.c @@ -624,7 +624,8 @@ int mr_server(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) } } - check_start_timestamp(cptr, timestamp, start_timestamp, TStime()); + recv_time = TStime(); + check_start_timestamp(cptr, timestamp, start_timestamp, recv_time); ret = server_estab(cptr, aconf); if (feature_bool(FEAT_RELIABLE_CLOCK) && -- 2.20.1