[svn-commits] jrose: branch 10 r372737 - in /branches/10: ./ main/channel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Sep 10 12:14:50 CDT 2012


Author: jrose
Date: Mon Sep 10 12:14:46 2012
New Revision: 372737

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372737
Log:
Masquerade: Retain parkinglot settings made by CHANNEL function.

Prior to this patch, the user would have a parkinglot set on a channel that
was parked and when the channel was retrieved, any attempt by that channel
to park would simply use the default. This patch makes parkinglot values
set in this way be retained through the masquerade.

(closes issue AST-990)
Reported by: Nick Huskinson
Patches:
    masquerade_parkinglot_patch.diff Uploaded by Jonathan Rose (license 6182)
........

Merged revisions 372736 from http://svn.asterisk.org/svn/asterisk/branches/1.8

Modified:
    branches/10/   (props changed)
    branches/10/main/channel.c

Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/10/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/channel.c?view=diff&rev=372737&r1=372736&r2=372737
==============================================================================
--- branches/10/main/channel.c (original)
+++ branches/10/main/channel.c Mon Sep 10 12:14:46 2012
@@ -6898,6 +6898,10 @@
 
 	/* Keep the same language.  */
 	ast_string_field_set(original, language, clonechan->language);
+
+	/* Keep the same parkinglot. */
+	ast_string_field_set(original, parkinglot, clonechan->parkinglot);
+
 	/* Copy the FD's other than the generator fd */
 	for (x = 0; x < AST_MAX_FDS; x++) {
 		if (x != AST_GENERATOR_FD)




More information about the svn-commits mailing list