1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 15:13:12 +02:00

Forward port: fix incorrect debug message, r1855.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1856 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2008-12-20 19:15:28 +00:00
parent fff6aadc1e
commit 4ef5ab0306
+1 -1
View File
@@ -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);