From 4ef5ab0306a7c452def271bc4a301b0fb850028f Mon Sep 17 00:00:00 2001 From: rburchell Date: Sat, 20 Dec 2008 19:15:28 +0000 Subject: [PATCH] Forward port: fix incorrect debug message, r1855. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1856 5417fbe8-f217-4b02-8779-1006273d7864 --- src/channels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels.c b/src/channels.c index f04b301b0..f901967b2 100644 --- a/src/channels.c +++ b/src/channels.c @@ -574,11 +574,11 @@ void do_join(const char *source, int ac, const char **av) continue; if (ac == 2) { + ts = strtoul(av[1], NULL, 10); if (debug) { alog("debug: recieved a new TS for JOIN: %ld", static_cast(ts)); } - ts = strtoul(av[1], NULL, 10); } chan = findchan(s);