[asterisk-commits] oej: branch oej/cancel_elsewhere_1.4 r171923 - /team/oej/cancel_elsewhere_1.4...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jan 28 08:27:39 CST 2009


Author: oej
Date: Wed Jan 28 08:27:38 2009
New Revision: 171923

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=171923
Log:
Move from c to C since c was used for something in trunk already. 

Modified:
    team/oej/cancel_elsewhere_1.4/apps/app_queue.c

Modified: team/oej/cancel_elsewhere_1.4/apps/app_queue.c
URL: http://svn.digium.com/svn-view/asterisk/team/oej/cancel_elsewhere_1.4/apps/app_queue.c?view=diff&rev=171923&r1=171922&r2=171923
==============================================================================
--- team/oej/cancel_elsewhere_1.4/apps/app_queue.c (original)
+++ team/oej/cancel_elsewhere_1.4/apps/app_queue.c Wed Jan 28 08:27:38 2009
@@ -155,7 +155,7 @@
 "This application will return to the dialplan if the queue does not exist, or\n"
 "any of the join options cause the caller to not enter the queue.\n"
 "The option string may contain zero or more of the following characters:\n"
-"      'c' -- If queue() cancels this call, always set the flag to tell the channel\n"
+"      'C' -- If queue() cancels this call, always set the flag to tell the channel\n"
 "             driver that the call is answered elsewhere to avoid the \"missed calls\" list.\n"
 "      'd' -- data-quality (modem) call (minimum delay).\n"
 "      'h' -- allow callee to hang up by hitting '*', or whatver disconnect sequence\n"
@@ -2790,7 +2790,7 @@
 		case 'i':
 			forwardsallowed = 0;
 			break;
-		case 'c':
+		case 'C':
 			cancel_answered_elsewhere = 1;
 			break;
 		}




More information about the asterisk-commits mailing list