svn commit: r392599 - in head/irc/bitlbee: . files

Renato Botelho garga at FreeBSD.org
Mon Jul 20 20:26:42 UTC 2015


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.) */


More information about the svn-ports-head mailing list