svn commit: r416187 - in head/net/asterisk11: . files

Guido Falsi madpilot at FreeBSD.org
Tue May 31 09:07:21 UTC 2016


Author: madpilot
Date: Tue May 31 09:07:19 2016
New Revision: 416187
URL: https://svnweb.freebsd.org/changeset/ports/416187

Log:
  Import upstream patch to fix regression in app_queue module.
  
  PR:		209880
  Submitted by:	emz at norma.perm.ru
  Obtained from:	https://github.com/asterisk/asterisk/commit/32b4320d620ffff5c55f111fc22f22fdb07f8c60

Added:
  head/net/asterisk11/files/patch-apps_app__queue.c   (contents, props changed)
Modified:
  head/net/asterisk11/Makefile

Modified: head/net/asterisk11/Makefile
==============================================================================
--- head/net/asterisk11/Makefile	Tue May 31 08:06:39 2016	(r416186)
+++ head/net/asterisk11/Makefile	Tue May 31 09:07:19 2016	(r416187)
@@ -2,7 +2,7 @@
 
 PORTNAME=	asterisk
 PORTVERSION=	11.22.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net
 MASTER_SITES=	http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:main,g729
 MASTER_SITE_SUBDIR=	asterisk/:main \

Added: head/net/asterisk11/files/patch-apps_app__queue.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/asterisk11/files/patch-apps_app__queue.c	Tue May 31 09:07:19 2016	(r416187)
@@ -0,0 +1,11 @@
+--- apps/app_queue.c.orig	2016-03-29 19:25:17 UTC
++++ apps/app_queue.c
+@@ -3641,7 +3641,7 @@ static int can_ring_entry(struct queue_e
+ 		return 0;
+ 	}
+ 
+-	if (call->member->in_call && call->lastqueue->wrapuptime) {
++	if (call->member->in_call && call->lastqueue && call->lastqueue->wrapuptime) {
+ 		ast_debug(1, "%s is in call, so not available (wrapuptime %d)\n",
+ 			call->interface, call->lastqueue->wrapuptime);
+ 		return 0;


More information about the svn-ports-head mailing list