From 02298c8e76655b95de42e2b5ad69571dff40bbf7 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sat, 18 May 2013 19:48:54 +0200 Subject: Fix prototype, return value is used by joindelay_tag --- src/common/inbound.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/common/inbound.c b/src/common/inbound.c index b35e3f52..3025ebf7 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -1066,7 +1066,7 @@ inbound_nameslist_end (server *serv, char *chan) return FALSE; } -static void +static gboolean check_autojoin_channels (server *serv) { int i = 0; @@ -1078,7 +1078,7 @@ check_autojoin_channels (server *serv) /* shouldn't really happen, the io tag is destroyed in server.c */ if (!is_server (serv)) { - return; + return FALSE; } /* If there's a session (i.e. this is a reconnect), autojoin to everything that was open previously. */ @@ -1141,6 +1141,7 @@ check_autojoin_channels (server *serv) serv->joindelay_tag = 0; fe_server_event (serv, FE_SE_LOGGEDIN, i); + return FALSE; } void -- cgit 1.4.1