[asterisk-commits] mvanbaak: branch 1.6.1 r215511 - in /branches/1.6.1: ./ channels/chan_skinny.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Sep 2 11:33:58 CDT 2009


Author: mvanbaak
Date: Wed Sep  2 11:33:54 2009
New Revision: 215511

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215511
Log:
Merged revisions 215479 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r215479 | mvanbaak | 2009-09-02 18:20:23 +0200 (Wed, 02 Sep 2009) | 3 lines
  
  like in chan_sip's sip_new skinny should copy the configured parkinglot from a line to the newly created channel.
  This makes callparking honor the configured parkinglot for skinny lines as well.
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/channels/chan_skinny.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/channels/chan_skinny.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/channels/chan_skinny.c?view=diff&rev=215511&r1=215510&r2=215511
==============================================================================
--- branches/1.6.1/channels/chan_skinny.c (original)
+++ branches/1.6.1/channels/chan_skinny.c Wed Sep  2 11:33:54 2009
@@ -3982,6 +3982,8 @@
 			ast_string_field_set(tmp, language, l->language);
 		if (!ast_strlen_zero(l->accountcode))
 			ast_string_field_set(tmp, accountcode, l->accountcode);
+		if (!ast_strlen_zero(l->parkinglot))
+			ast_string_field_set(tmp, parkinglot, l->parkinglot);
 		if (l->amaflags)
 			tmp->amaflags = l->amaflags;
 




More information about the asterisk-commits mailing list