[asterisk-commits] mvanbaak: branch 1.6.2 r215512 - in /branches/1.6.2: ./ channels/chan_skinny.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 2 11:35:24 CDT 2009
Author: mvanbaak
Date: Wed Sep 2 11:35:21 2009
New Revision: 215512
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215512
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.2/ (props changed)
branches/1.6.2/channels/chan_skinny.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/channels/chan_skinny.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/channels/chan_skinny.c?view=diff&rev=215512&r1=215511&r2=215512
==============================================================================
--- branches/1.6.2/channels/chan_skinny.c (original)
+++ branches/1.6.2/channels/chan_skinny.c Wed Sep 2 11:35:21 2009
@@ -4325,6 +4325,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