Date: Mon, 20 Jul 2015 20:26:41 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392599 - in head/irc/bitlbee: . files Message-ID: <201507202026.t6KKQfCH041792@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: garga Date: Mon Jul 20 20:26:40 2015 New Revision: 392599 URL: https://svnweb.freebsd.org/changeset/ports/392599 Log: - Fix a regression introduced in 3.4 that broke auto_join channels - Bump PORTREVISION Added: head/irc/bitlbee/files/patch-irc__channel.c (contents, props changed) Modified: head/irc/bitlbee/Makefile Modified: head/irc/bitlbee/Makefile ============================================================================== --- head/irc/bitlbee/Makefile Mon Jul 20 20:03:29 2015 (r392598) +++ head/irc/bitlbee/Makefile Mon Jul 20 20:26:40 2015 (r392599) @@ -2,6 +2,7 @@ PORTNAME= bitlbee PORTVERSION= 3.4.1 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://get.bitlbee.org/src/ \ LOCAL/brix Added: head/irc/bitlbee/files/patch-irc__channel.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/bitlbee/files/patch-irc__channel.c Mon Jul 20 20:26:40 2015 (r392599) @@ -0,0 +1,11 @@ +--- irc_channel.c.orig 2015-07-20 20:09:00 UTC ++++ irc_channel.c +@@ -444,7 +444,7 @@ void irc_channel_auto_joins(irc_t *irc, + can only auto-join them if their account is online. */ + char *acc_s; + +- if (!aj || (ic->flags & IRC_CHANNEL_JOINED)) { ++ if (!aj && !(ic->flags & IRC_CHANNEL_JOINED)) { + /* Only continue if this one's marked as auto_join + or if we're in it already. (Possible if the + client auto-rejoined it before identyfing.) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507202026.t6KKQfCH041792>