diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | functions.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -41,4 +41,6 @@ Sending ^D when running with ./blabouncer -f does crazy stuff. Connecting from irssi triggers doautoreplay() from "USER received" in message.c twice. +Use the line number based replay log reading method from lastspoke rather than the inefficient re-read + line offset method in time replays? (And potentially remove a bunch of code re-use.) + Crash when requesting 30 hour replay. diff --git a/functions.c b/functions.c index 6f8d131..fcb1799 100644 --- a/functions.c +++ b/functions.c @@ -1474,7 +1474,7 @@ int isnickinanychannel(struct channel *channels, int maxchannelcount, char *nick } } - debugprint(DEBUG_FULL, "isnickinanychannel(): nick '%s' not found in any channel '%s', returning 0.\n", nick); + debugprint(DEBUG_FULL, "isnickinanychannel(): nick '%s' not found in any channel, returning 0.\n", nick); return 0; } |