diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-20 19:15:28 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-20 19:15:28 +0000 |
commit | 4ef5ab0306a7c452def271bc4a301b0fb850028f (patch) | |
tree | 109a8195b76ca0c04d0e96a1f221db6699375668 /src | |
parent | fff6aadc1e664049bfee7ab3af204b34c8cf9d23 (diff) |
Forward port: fix incorrect debug message, r1855.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1856 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/channels.c | 2 |
1 files changed, 1 insertions, 1 deletions
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<long>(ts)); } - ts = strtoul(av[1], NULL, 10); } chan = findchan(s); |