[asterisk-commits] mmichelson: branch mmichelson/sip_attended_transfer r388173 - /team/mmichelso...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu May 9 09:17:37 CDT 2013
Author: mmichelson
Date: Thu May 9 09:17:34 2013
New Revision: 388173
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=388173
Log:
Address Kinsey's review comments.
Modified:
team/mmichelson/sip_attended_transfer/channels/chan_sip.c
Modified: team/mmichelson/sip_attended_transfer/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/mmichelson/sip_attended_transfer/channels/chan_sip.c?view=diff&rev=388173&r1=388172&r2=388173
==============================================================================
--- team/mmichelson/sip_attended_transfer/channels/chan_sip.c (original)
+++ team/mmichelson/sip_attended_transfer/channels/chan_sip.c Thu May 9 09:17:34 2013
@@ -24788,7 +24788,7 @@
}
/*! \brief Handle the transfer part of INVITE with a replaces: header,
- *
+ *
* This is used for call-pickup and for attended transfers initiated on
* remote endpoints (i.e. a REFER received on a remote server).
*
@@ -24831,7 +24831,7 @@
transmit_response(p, "100 Trying", req);
ast_setstate(c, AST_STATE_RING);
- ast_debug(4, "Invite/Replaces: preparing to masquerade %s into %s\n", ast_channel_name(c), ast_channel_name(replaces_chan));
+ ast_debug(4, "Invite/Replaces: preparing to replace %s with %s\n", ast_channel_name(replaces_chan), ast_channel_name(c));
*nounlock = 1;
ast_channel_unlock(c);
@@ -25898,7 +25898,7 @@
}
ast_set_flag(&transferer->flags[0], SIP_DEFER_BYE_ON_TRANSFER); /* Delay hangup */
-
+
sip_pvt_unlock(transferer);
ast_channel_unlock(transferer_chan);
*nounlock = 1;
More information about the asterisk-commits
mailing list