[asterisk-commits] branch 1.2 r10018 - /branches/1.2/apps/app_queue.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Feb 14 13:20:15 MST 2006


Author: kpfleming
Date: Tue Feb 14 14:20:15 2006
New Revision: 10018

URL: http://svn.digium.com/view/asterisk?rev=10018&view=rev
Log:
don't double-increment abandon counter for calls that are hung up while dialing members (issue #6289)

Modified:
    branches/1.2/apps/app_queue.c

Modified: branches/1.2/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_queue.c?rev=10018&r1=10017&r2=10018&view=diff
==============================================================================
--- branches/1.2/apps/app_queue.c (original)
+++ branches/1.2/apps/app_queue.c Tue Feb 14 14:20:15 2006
@@ -1,7 +1,7 @@
 /*
  * Asterisk -- An open source telephony toolkit.
  *
- * Copyright (C) 1999 - 2005, Digium, Inc.
+ * Copyright (C) 1999 - 2006, Digium, Inc.
  *
  * Mark Spencer <markster at digium.com>
  *
@@ -2141,7 +2141,6 @@
 	if (!peer) {
 		if (to) {
 			/* Musta gotten hung up */
-			record_abandoned(qe);
 			res = -1;
 		} else {
 			res = digit;



More information about the asterisk-commits mailing list